Format:
Recent snippets matching tags of INotifyPropertyChanged
<!-- CTRL+K, CTRL+X = Insert Snippet --> <!-- CTRL+K, CTRL+B = Manage Snippets --> <CodeSnippet Format="1.0.0" xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <Header> <Title>Property with NotifyPropertyChanged</Title> <Author>Jerry Nixon</Author> <Shortcut>propnote</Shortcut> <Description>Property with NotifyPropertyChanged</Description>
374 Views
1 comments
namespace Nowcom.Quicksilver { using System.ComponentModel; using System.Linq.Expressions; using System; public abstract class PropertyChangedBase : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged;
484 Views
1 comments
private static PropertyChangedEventArgs CurrentItemChangedEventArgs = new PropertyChangedEventArgs("CurrentItem"); private static PropertyChangedEventArgs CurrentPositionChangedEventArgs = new PropertyChangedEventArgs("CurrentPosition"); private static PropertyChangedEventArgs IsCurrentBeforeFirstChangedEventArgs = new PropertyChangedEventArgs("IsCurrentBeforeFirst"); ... this.PropertyChanged(this, CurrentItemChangedEventArgs); this.PropertyChanged(this, CurrentPositionChangedEventArgs); this.PropertyChanged(this, IsCurrentBeforeFirstChangedEventArgs);
405 Views
no comments
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search
