Beispiel #1
0
 static extern void GuiSkin_SetDefaultText(IntPtr gskin, GuiDefaultText which, string text);
Beispiel #2
0
 /// <summary>
 /// Sets a default text.
 /// For example for Message box button captions: "OK", "Cancel", "Yes", "No" and so on.
 /// </summary>
 /// <param name="text">Specified default text</param>
 /// <param name="txt">New text</param>
 public void SetDefaultText(GuiDefaultText text, string txt)
 {
     GuiSkin_SetDefaultText(_raw, text, txt);
 }
Beispiel #3
0
 static extern string GuiSkin_GetDefaultText(IntPtr gskin, GuiDefaultText which);
Beispiel #4
0
 /// <summary>
 /// Returns a default text.
 /// For example for Message box button captions: "OK", "Cancel", "Yes", "No" and so on. 
 /// </summary>
 /// <param name="text">Specified default text</param>
 /// <returns></returns>
 public string GetDefaultText(GuiDefaultText text)
 {
     return GuiSkin_GetDefaultText(_raw, text);
 }