Exemple #1
0
 public ScrollableContentControl(IScrollableContent content)
     : this()
 {
     this.content = content;
     this.content.Initialize(panelContent, this);
     this.components = new Container();
     this.components.Add(new DisposableComponent(content));
 }
Exemple #2
0
 public ScrollableEx(IScrollableContent content)
 {
     Content = content;
 }