Пример #1
0
 public RedrawAccumulator(RootControl rootControl, bool shouldRedrawAtTheEnd)
 {
     Root = rootControl;
     if (Root != null)
     {
         Root.RedrawRequestsCount++;
     }
     this.ShouldRedrawAtTheEnd = shouldRedrawAtTheEnd;
 }
Пример #2
0
 protected override void InitControl(OrientationType orientation)
 {
     MyRootControl = new RootControl(this.Children.Controls);
     MyRootControl.LinearLayoutStrategy.Orientation = orientation;
 }
Пример #3
0
 public RedrawAccumulator(RootControl rootControl)
     : this(rootControl, true)
 {
 }
Пример #4
0
 public RedrawAccumulator(RootControl rootControl)
     : this(rootControl, true)
 {
 }