GitUI.MergePatch.SetPatchFile C# (CSharp) Method

SetPatchFile() public method

public SetPatchFile ( string name ) : void
name string
return void
        public void SetPatchFile(string name)
        {
            PatchFile.Text = name;
        }

Usage Example

コード例 #1
0
ファイル: ApplyPatch.cs プロジェクト: arBmind/gitextensions
 private void ApplyPatch_Click(object sender, EventArgs e)
 {
     MergePatch form = new MergePatch();
     form.SetPatchFile(PatchFileNameEdit.Text);
     form.ShowDialog();
 }