예제 #1
0
파일: Config.cs 프로젝트: wade1990/PortAIO
 internal static bool IsKeyPressed(string itemName)
 {
     return(Kong.Item(itemName).GetValue <KeyBind>().Active);
 }
예제 #2
0
파일: Config.cs 프로젝트: wade1990/PortAIO
 internal static int GetStringListValue(string itemName)
 {
     return(Kong.Item(itemName).GetValue <StringList>().SelectedIndex);
 }
예제 #3
0
파일: Config.cs 프로젝트: wade1990/PortAIO
 internal static bool IsChecked(string itemName)
 {
     return(Kong.Item(itemName).GetValue <bool>());
 }
예제 #4
0
파일: Config.cs 프로젝트: wade1990/PortAIO
 internal static int GetSliderValue(string itemName)
 {
     return(Kong.Item(itemName).GetValue <Slider>().Value);
 }