Extending the properties of WPF controls(WPF Application)

Jan 31 2008 8:02 AM

Hi all,

        I want to add new properties to the WPF controls.

In VS2005:

[System.ComponentModel.Category("SCI Property"), System.ComponentModel.Description("Our own propery")]

public string MessageString

{get{return MsgString;}set{MsgString = value;}}

I tried this way in WPF application. But, didn't work....

Please guide me.........

thanks in advance....