예제 #1
0
파일: Dialog.cs 프로젝트: djlw78/FlaxAPI
 /// <summary>
 /// Shows the dialog.
 /// </summary>
 /// <param name="parentWindow">The parent window.</param>
 public void Show(Window parentWindow)
 {
     Show(parentWindow?.NativeWindow);
 }
예제 #2
0
파일: Dialog.cs 프로젝트: djlw78/FlaxAPI
 /// <summary>
 /// Shows the dialog and waits for the result.
 /// </summary>
 /// <param name="parentWindow">The parent window.</param>
 /// <returns>The dialog result.</returns>
 public DialogResult ShowDialog(Window parentWindow)
 {
     return(ShowDialog(parentWindow?.NativeWindow));
 }
예제 #3
0
 // Hidden constructor. Object created from C++ side.
 private Window()
 {
     GUI = new GUI.Window(this);
 }