Exemple #1
0
 public Button(Position position, string text, ButtonStyle style, bool isSelected)
     : base(position, isSelected)
 {
     this.text  = text;
     this.style = style;
 }
Exemple #2
0
 public GuiStyle(GuiStyle other)
 {
     Background  = other.Background;
     Foreground  = other.Foreground;
     ButtonStyle = new ButtonStyle(other.ButtonStyle);
 }