(X) Hide this Sign up for the upcoming webinar on WCF RIA Services Validation by Brian Noyes. March 16th, 10 am PST (check your local time)
Full info | Sign up | More webinars
Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 5 results for Sergey Barskiy.
Date between: <not defined> and <not defined>
Search in: News , Articles , Tips , Shows , Showcase , Books

Order by Publish Date   Ascending Title   Rating  

  • 0 comments  /  posted by  Silverlight Show  on  Sep 03, 2010 (6 months ago)
    Sergey Barskiy encountered a small problem with his new project and Blend but luckily managed to find a solution.

    Source: Sergey Barskiy's Blog

    I can use styles from MyResourceDictionary.xaml, but Blend generates an error for me – it cannot find my resources. Here is an easy way to overcome this issue. You have to add the same dictionary into the resources of each screen: In the example below I am showing resources area for a user control called MySampleView from MyApp module.



  • 0 comments  /  posted by  Svetla Stoycheva  on  Aug 10, 2010 (7 months ago)

    Sergey Barskiy posted the code for a solution allowing encryption in a Silverlight client.

    Today I would like to cover a specific use case that came up a few times in Silverlight applications I wrote.  For example, I wand a user to enter some sensitive information, encrypt it in Silverlight client, transfer it over to the server, then decrypt it and perforation some operations on that data.

    First step of course is to find sufficiently strong encryption protocol that can be implemented in both Silverlight and .NET and be completely compatible between both run times.  I am going to go for AES encryption.  AES stands for “Advanced Encryption Standard”.  This standard is widely used and approved by US government and standard bodies.  See this article for details.

  • 0 comments  /  posted by  Silverlight Show  on  Jul 30, 2010 (7 months ago)
    In this post, Sergey Barskiy discusses UI testing and test automation with StatLight framework.

    In my last post I am going to cover the last two topics I set out to address.  The first topic is UI testing.  What unit test frameworks lack sometime is the actually UI testing.  What I mean by that is for example, click on a button, then see what happens.  In case of Silverlight, Silverlight framework itself has a number of helper classes to help us achieve this goal.  For example, ButtonAutomationPeer class allows us to drive button actions from within unit tests.  Also, Microsoft Silverlight unit testing framework allows developers to insert UI components onto unit testing surface.

  • 0 comments  /  posted by  Silverlight Show  on  Jul 19, 2010 (8 months ago)
    Sergey Barskiy is starting a short series of posts on unit testing of Silverlight applications.

    I will be using the following set of technologies. 

    • Microsoft Silverlight Unit testing framework that ships with Silverlight tool kit
    • Moq – mocking framework that supports Silverlight 4
    • StatLight – unit testing automation framework that will allow for unattended / automated running unit tests
  • Windows Phone 7 Database

    1 comments  /  posted by  Silverlight Show  on  May 03, 2010 (10 months ago)
    Sergey Barskiy has converted his existing Silverlight database project and adapted it to Windows Phone 7.

    It supports multiple strongly typed tables, basic Linq based operations, addition and deletion of ranges of items, deletion of items based on condition.  You can also directly bind data to UI in Silverlight because base table inherits from ObservableCollection.  It supports encryption along with lazy loading of table.