コード例 #1
0
        public bool Equals(FontColor p)
        {
            if ((object)p == null)
            {
                return(false);
            }

            return((this.Name == p.Name) && (this.Brush.Equals(p.Brush)));
        }
コード例 #2
0
        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)));
        }
コード例 #3
0
 public ColorComboBox()
 {
     this.selectedFontColor = AvailableColors.GetFontColor(Colors.Black);
     this.fontColorList     = new ReadOnlyCollection <FontColor>(new AvailableColors());
 }