示例#1
0
 public void SetPressed(XOutputButton button)
 {
     device.SetButton(button, true);
 }
示例#2
0
 public void setButton(XOutputButton button, bool pressed)
 {
     holder.SetButton(button, pressed);
 }
示例#3
0
 public void SetButton(XOutputButton button, bool pressed)
 {
     device.SetButton(button, pressed);
 }
 public void SetPressed(XOutputButton button)
 {
     device.SetButton(button, true);
 }
示例#5
0
 public bool GetButton(XOutputButton button)
 {
     return device.GetButton(button);
 }
 public void setButton(XOutputButton button, bool pressed)
 {
     holder.SetButton(button, pressed);
 }
 public void SetButton(XOutputButton button, bool pressed)
 {
     device.SetButton(button, pressed);
 }
示例#8
0
 private int IntValue(XOutputButton button)
 {
     return(m_state.ButtonState[(int)button] ? 1 : 0);
 }
 public bool GetButton(XOutputButton button)
 {
     return(device.GetButton(button));
 }
示例#10
0
 public Boolean GetButton(XOutputButton button)
 {
     return(m_state.ButtonState[(int)button]);
 }
示例#11
0
 public void SetButton(XOutputButton button, Boolean pressed)
 {
     m_state.ButtonState[(int)button] = pressed;
 }
示例#12
0
 private int IntValue(XOutputButton button)
 {
     return m_state.ButtonState[(int)button] ? 1 : 0;
 }
示例#13
0
 public Boolean GetButton(XOutputButton button)
 {
     return m_state.ButtonState[(int)button];
 }
示例#14
0
 public void SetButton(XOutputButton button, Boolean pressed)
 {
     m_state.ButtonState[(int)button] = pressed;
 }