コード例 #1
0
 public void Show()
 {
     TemplateView.ContentState contentState = this.currentState;
     this.currentState = TemplateView.ContentState.OpeningOrClosing;
     (this.formObj as ClientBaseForm).OpenForm(this.isFirstOpen);
     this.currentState = contentState;
     this.isFirstOpen = false;
 }
コード例 #2
0
 public TemplateView(string templateName)
 {
     this.name = templateName;
     this.currentState = TemplateView.ContentState.New;
 }
コード例 #3
0
 public void Hide()
 {
     TemplateView.ContentState contentState = this.currentState;
     this.currentState = TemplateView.ContentState.OpeningOrClosing;
     ((ClientBaseForm)this.formObj).HideForm();
     this.currentState = contentState;
 }