Dotnet
A newbie to WF Paid Members Public
With WPF(Windows Presentation Foundation), we saw the complete designer-developer separation,making it one of the best presentation technologies available at present. Windows Workflow Foundation(WF) brings about the separation of the 'when-and-what',says Bruce Bukovics,author of Pro WF: Windows Workflow in .NET 4 (Expert's
Deleting Multiple Selected Items in WPF Paid Members Public
Hi, Many a times while using listbox,listview etc there might be a need to delete the multiple selected items. This can be easily achieved by the following piece of code While ControlName.SelectedItems.Count > 0 ControlName.Items.Remove(ControlName.SelectedItem) End While Happy Coding :)
SolidColorBrush List from Brushes Paid Members Public
Hi, Everybody will be using Brushes,which implements a set of predefined SolidColrBrush objects,to choose various colors. Sometimes you may want to get a list of all these brushes up in your application,so that the user can select the color of his/her choice. To get the list
Scrolling a Disabled Listbox in WPF Paid Members Public
Recently I had a requirement when developing an application,where i needed a listbox which was to be disabled but yet can be scrolled,so that all the contents in it was visible.Applying the property,IsEnabled=False makes the whole listbox disabled even disabling the scroll. I just found
FxCop Custom Naming Rules Paid Members Public
Recently I had started using FxCop,which is a wonderful code analysis tool.Soon after getting into it,I felt the need of rules specific to my requirements and standards.One such need was in the area of 'Naming of Variables'. Every project/organization might have their own