コード例 #1
0
 public Open_Download(Open open, DavRessource ress)
 {
     this.open = open;
     this.ress = ress;
     d_SetDownloadState = new SetDownloadState(this.SetDownloadStateMethod);
     d_CloseWindows = new CloseWindows(this.CloseWindowsMethod);
     InitializeComponent();
 }
コード例 #2
0
 public OpenRemoteDocument(Open open, DavRessource ress)
 {
     this.open = open;
     this.ress = ress;
 }
コード例 #3
0
 public ShowDownloadState(Open open, Open_Download op)
 {
     this.open = open;
     this.op = op;
 }
コード例 #4
0
ファイル: Connect.cs プロジェクト: markkimsal/pengyou-clients
 private void Open_Click(CommandBarButton cmdBarbutton, ref bool cancel)
 {
     Open DialogOpen = new Open(app, this);
        DialogOpen.ShowDialog();
        OpenWordDocument();
 }