Dotnet

A newbie to WF 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

Deleting Multiple Selected Items in WPF 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 :)

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

SolidColorBrush List from Brushes 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

Scrolling a Disabled Listbox in WPF 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

FxCop Custom Naming Rules 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet