コード例 #1
0
 private void bPostData_Click(object sender, EventArgs e)
 {
     using (PostDataEditor editor = new PostDataEditor())
     {
         editor.PostData = CurrentVariable.PostData;
         if (editor.ShowDialog(this) == DialogResult.OK)
         {
             CurrentVariable.PostData = editor.PostData;
         }
     }
 }
コード例 #2
0
 private void bPostData_Click(object sender, EventArgs e)
 {
     using (PostDataEditor editor = new PostDataEditor())
     {
         editor.PostData = CurrentVariable.PostData;
         if (editor.ShowDialog(this) == DialogResult.OK)
         {
             CurrentVariable.PostData = editor.PostData;
         }
     }
 }