Esempio n. 1
0
 public bool HasWindow(WindowRepresentation window)
 {
     return(Dimensions.Equals(window.Dimensions));
 }
Esempio n. 2
0
 public void SetWindow(WindowRepresentation window)
 {
     window.SetDimensions(Dimensions);
 }
 public bool HasWindow(WindowRepresentation window)
 {
     //null object doing nothing
     return(false);
 }
Esempio n. 4
0
 private GridElement GetGridElementWindowIsOn(WindowRepresentation window)
 {
     return(_gridElements.FirstOrDefault(gridElement => gridElement.HasWindow(window)));
 }
 public void SetWindow(WindowRepresentation window)
 {
     //null object doing nothing
 }