Esempio n. 1
0
 // produce Screen Instruction Out
 ScreenOutInstruction produceOutInstruction(ScreenInstruction instruction)
 {
     return(new ScreenOutInstruction()
     {
         Top = instruction.Top,
         Left = instruction.Left,
         IsMaximized = instruction.IsMaximized,
         IsShown = instruction.IsShown
     });
 }
Esempio n. 2
0
 /// <summary>
 /// Implement Interface
 /// </summary>
 /// <param></param>
 ///
 public void ChooseScreenToMakeFullScreen(int id)
 {
     ScreenInstruction = JsonConvert.DeserializeObject <ScreenInstruction>(_IScreen.GetFullScreenInstruction(id));
     //throw new NotImplementedException();
 }