コード例 #1
0
ファイル: ControlFrame.cs プロジェクト: Wiladams/NewTOAPIA
        public ButtonRendering(ButtonElementType buttonType, ControlStateModifier modifiers)
            : base(ControlCategory.Button, (int)buttonType, modifiers)
        {

        }
コード例 #2
0
ファイル: ControlFrame.cs プロジェクト: Wiladams/NewTOAPIA
 public MenuRendering(MenuElementType menuElement, ControlStateModifier modifiers)
     : base(ControlCategory.Menu, (int)menuElement, modifiers)
 {}
コード例 #3
0
ファイル: ControlFrame.cs プロジェクト: Wiladams/NewTOAPIA
 public ControlRenderingStyle(ControlCategory category, int controlType, ControlStateModifier modifiers)
 {
     fControlCategory = category;
     fControlType = controlType;
     fModifiers = modifiers;
 }