Beispiel #1
0
 public async Task SetDialog(int x, int y, bool displayEvents, DialogPosition pos, string title, bool topMost, DialogType dialogType)
 {
     await SendRequest <SetDialogResponse>(new SetDialogRequest
     {
         DialogX = x,
         DialogY = y,
         DisableDisplayEvents = displayEvents,
         DialogPosition       = pos,
         DialogTitle          = title,
         EnableTopmost        = topMost,
         DialogType           = dialogType
     });
 }
 /// <summary>
 /// Constructor that initializes the Hide, Show and Position options
 /// </summary>
 public DialogOptionBuilder()
 {
     this.Hide     = new DialogAnimate();
     this.Show     = new DialogAnimate();
     this.Position = new DialogPosition();
 }