public bool Equals(FontColor p) { if ((object)p == null) { return(false); } return((this.Name == p.Name) && (this.Brush.Equals(p.Brush))); }
public bool Equals(FontColor p) { if ((object)p == null) { return false; } return (this.Name == p.Name) && (this.Brush.Equals(p.Brush)); }
public override bool Equals(System.Object obj) { if (obj == null) { return(false); } FontColor p = obj as FontColor; if ((System.Object)p == null) { return(false); } return((this.Name == p.Name) && (this.Brush.Equals(p.Brush))); }
public ColorPickerViewModel() { this.selectedFontColor = AvailableColors.GetFontColor(Colors.Black); this.roFontColors = new ReadOnlyCollection<FontColor>(new AvailableColors()); }
public ColorPickerViewModel() { this.selectedFontColor = AvailableColors.GetFontColor(Colors.Black); this.roFontColors = new ReadOnlyCollection <FontColor>(new AvailableColors()); }