Click here to Skip to main content
15,885,278 members
Home / Discussions / WPF
   

WPF

 
QuestionWPF Rotate transform issue Pin
Shane555513-May-10 5:20
Shane555513-May-10 5:20 
AnswerRe: WPF Rotate transform issue Pin
Insincere Dave13-May-10 6:07
Insincere Dave13-May-10 6:07 
GeneralRe: WPF Rotate transform issue Pin
Shane555513-May-10 6:15
Shane555513-May-10 6:15 
QuestionWPF for Pipe networks Pin
Dimitris Nemtsov13-May-10 3:21
Dimitris Nemtsov13-May-10 3:21 
QuestionTexBlock Size [SOLVED!] Pin
#realJSOP13-May-10 2:51
mve#realJSOP13-May-10 2:51 
QuestionWPF cascaded combo Pin
bindum3112-May-10 20:22
bindum3112-May-10 20:22 
AnswerRe: WPF cascaded combo Pin
Venkatesh Mookkan12-May-10 22:41
Venkatesh Mookkan12-May-10 22:41 
GeneralRe: WPF cascaded combo Pin
bindum3112-May-10 23:30
bindum3112-May-10 23:30 
Thanks Castle Rider for your reply.

I have made a Generic "BasePresenter" class where i have implemented INotifyPropertyChanged interface in the following way:
public event PropertyChangedEventHandler PropertyChanged;

protected void OnPropertyChanged(string propertyName)
{
     PropertyChangedEventHandler handler = this.PropertyChanged;
     if (handler != null)
     {
         handler(this, new PropertyChangedEventArgs(propertyName));
     }
}

And in my Presenter class I have used:
public ObservableCollection<INVCategory> CategoryList
{
    get
    {
        return this.categoryList;
    }

    set
    {
        this.categoryList = value;
        OnPropertyChanged("CategoryList");

    }
}

GeneralRe: WPF cascaded combo Pin
Venkatesh Mookkan13-May-10 0:19
Venkatesh Mookkan13-May-10 0:19 
GeneralRe: WPF cascaded combo Pin
bindum3113-May-10 1:57
bindum3113-May-10 1:57 
GeneralRe: WPF cascaded combo Pin
Venkatesh Mookkan13-May-10 19:50
Venkatesh Mookkan13-May-10 19:50 
Questionerror on installation of VS2010 Express Pin
arkiboys12-May-10 19:53
arkiboys12-May-10 19:53 
AnswerRe: error on installation of VS2010 Express Pin
Michel Godfroid12-May-10 20:50
Michel Godfroid12-May-10 20:50 
GeneralRe: error on installation of VS2010 Express Pin
arkiboys12-May-10 21:13
arkiboys12-May-10 21:13 
GeneralRe: error on installation of VS2010 Express Pin
Michel Godfroid12-May-10 21:16
Michel Godfroid12-May-10 21:16 
GeneralRe: error on installation of VS2010 Express Pin
arkiboys12-May-10 21:30
arkiboys12-May-10 21:30 
GeneralRe: error on installation of VS2010 Express Pin
Michel Godfroid12-May-10 21:41
Michel Godfroid12-May-10 21:41 
GeneralRe: error on installation of VS2010 Express Pin
arkiboys13-May-10 0:41
arkiboys13-May-10 0:41 
GeneralRe: error on installation of VS2010 Express Pin
Michel Godfroid13-May-10 0:49
Michel Godfroid13-May-10 0:49 
GeneralRe: error on installation of VS2010 Express Pin
#realJSOP13-May-10 3:21
mve#realJSOP13-May-10 3:21 
QuestionTreeView & Commanding Pin
Kevin Marois12-May-10 12:50
professionalKevin Marois12-May-10 12:50 
AnswerRe: TreeView & Commanding Pin
Pete O'Hanlon12-May-10 21:30
mvePete O'Hanlon12-May-10 21:30 
Questionxaml color code Pin
devvvy11-May-10 22:57
devvvy11-May-10 22:57 
AnswerRe: xaml color code Pin
Andy_L_J12-May-10 22:12
Andy_L_J12-May-10 22:12 
QuestionWPF: User-control properties appearance Pin
Prasoon Chaudhary11-May-10 22:08
Prasoon Chaudhary11-May-10 22:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.