Owner: rredcat@gmail.com URL:http://rredcat.blogspot.com/ Join Date: Thu, 16 Oct 2008 13:09:13 -0500 Rating:0 Site Description: C#, WPF, XAML, Silverlight, Windows Vista and other programming's sweet Site statistics:Click here
Really multiUI window on WPF project. 2008-10-16 01:46:00 Download binary file - here,Download source files - here.Introduction.WPF presents new way to implement visual appearance of application. We can implement it in XAML and C# files both or separately. We use Application.LoadComponent( Object, Uri ) method for load XAML files where "Uri" presents way to XAML file. So we can manipulate visual appearance presented in XAML's files load different XAML's
Little deception of List.ForEach(Action action) 2008-10-12 04:25:00 I use foreach statement really often. It is useful and more compact than for. (This way is fast in same case but in same case it is slowly for performance. But I want say not about that). List<T> class has ForEach(Action action) method I thought that its implementation (and behaviour) is like foreach statement (I make this conclusion, based on the name of method) but I was confused. I have
Trips&Ticks: Do you know how you can cast Object to AnonymousType? 2008-11-21 14:28:00 I experimented with LINQ in my private project and question that was showed in title took me. I had next situation:I set list in one method:private void SetList(){SomeList.ItemsSource = ( from someTable in data.SomeTable select new { someTable.Id, someTable.Name, Priority = someTable.Priority, } );In other method I want retrieve Id of Read more:Object
, Ticks