Click here to Skip to main content
15,904,339 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: XAML Power Toys Released Pin
User 2710091-Sep-08 5:28
User 2710091-Sep-08 5:28 
AnswerRe: XAML Power Toys Released Pin
Jammer31-Aug-08 22:45
Jammer31-Aug-08 22:45 
AnswerRe: XAML Power Toys Released Pin
Jammer31-Aug-08 23:29
Jammer31-Aug-08 23:29 
GeneralRe: XAML Power Toys Released Pin
User 2710091-Sep-08 5:26
User 2710091-Sep-08 5:26 
GeneralRe: XAML Power Toys Released Pin
Jammer1-Sep-08 5:40
Jammer1-Sep-08 5:40 
AnswerRe: XAML Power Toys Released Pin
Pete O'Hanlon2-Sep-08 8:40
mvePete O'Hanlon2-Sep-08 8:40 
GeneralRe: XAML Power Toys Released Pin
User 2710093-Sep-08 13:21
User 2710093-Sep-08 13:21 
GeneralRe: XAML Power Toys Released Pin
Pete O'Hanlon3-Sep-08 22:22
mvePete O'Hanlon3-Sep-08 22:22 
Thanks mate. Tell you what, I'm putting together a C# addin which I'll let you have a look at - any bits that you like, I'll convert over to VB.NET, it'll be good practice for me. The first toy takes a property and converts it into a notifiable property, so it converts:
public string MyProperty { get; set; }
into
private string _myProperty;
public string MyProperty
{
  get
  {
    return _myProperty;
  }
  set
  {
    if (_myProperty != value)
    {
      PropertyChanged("MyProperty");
      _myProperty = value;
    }
  }
}


Deja View - the feeling that you've seen this post before.

My blog | My articles



GeneralRe: XAML Power Toys Released Pin
User 2710097-Sep-08 8:06
User 2710097-Sep-08 8:06 
GeneralRe: XAML Power Toys Released Pin
Pete O'Hanlon7-Sep-08 9:35
mvePete O'Hanlon7-Sep-08 9:35 
AnswerRe: XAML Power Toys Released Pin
Paul Conrad3-Sep-08 11:48
professionalPaul Conrad3-Sep-08 11:48 
AnswerRe: XAML Power Toys Released Pin
Sk8tz13-Sep-08 14:30
professionalSk8tz13-Sep-08 14:30 
GeneralRe: XAML Power Toys Released Pin
Pete O'Hanlon14-Sep-08 8:42
mvePete O'Hanlon14-Sep-08 8:42 
GeneralRe: XAML Power Toys Released Pin
Sk8tz14-Sep-08 22:02
professionalSk8tz14-Sep-08 22:02 
GeneralRe: XAML Power Toys Released Pin
Pete O'Hanlon14-Sep-08 22:37
mvePete O'Hanlon14-Sep-08 22:37 
GeneralRe: XAML Power Toys Released Pin
User 27100922-Sep-08 3:39
User 27100922-Sep-08 3:39 
QuestionImage control can't render BitmapSource/InteropBitmap Pin
brafales30-Aug-08 3:13
brafales30-Aug-08 3:13 
AnswerRe: Image control can't render BitmapSource/InteropBitmap Pin
Insincere Dave30-Aug-08 7:51
Insincere Dave30-Aug-08 7:51 
GeneralRe: Image control can't render BitmapSource/InteropBitmap Pin
brafales31-Aug-08 9:28
brafales31-Aug-08 9:28 
QuestionWPF Textbox validation? Pin
Dotnetkanna30-Aug-08 1:44
Dotnetkanna30-Aug-08 1:44 
AnswerRe: WPF Textbox validation? Pin
Pete O'Hanlon30-Aug-08 9:02
mvePete O'Hanlon30-Aug-08 9:02 
QuestionWPF D3DImage performs good on XP, bad on Vista [modified] Pin
Dave_BHGF29-Aug-08 7:29
Dave_BHGF29-Aug-08 7:29 
QuestionInteresting WPF Info Pin
Jammer28-Aug-08 23:05
Jammer28-Aug-08 23:05 
AnswerRe: Interesting WPF Info Pin
Pete O'Hanlon29-Aug-08 0:55
mvePete O'Hanlon29-Aug-08 0:55 
GeneralRe: Interesting WPF Info Pin
Jammer29-Aug-08 1:52
Jammer29-Aug-08 1:52 

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.