Пример #1
0
 public ScrollContainer(ScrollContainerStyle Style, WindowContainer Window, Control View)
 {
     this._Style = Style;
     this._View = View;
     this._Window = Window;
 }
Пример #2
0
 public ScrollContainer(ScrollContainerStyle Style, Control Client)
 {
     this._Style = Style;
     this._View = this._Window = new WindowContainer(Client);
 }