AddName() public method

public AddName ( string s ) : void
s string
return void
Beispiel #1
0
        private void addNameToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (FaceFX == null)
            {
                return;
            }
            string result = Microsoft.VisualBasic.Interaction.InputBox("Please enter new name to add", "ME3Explorer", "", 0, 0);

            if (result != "")
            {
                FaceFX.AddName(result);
                FaceFX.Save();
            }
        }
Beispiel #2
0
        private void addNameToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (FaceFX == null)
            {
                return;
            }
            string result = PromptDialog.Prompt(null, "Please enter new name to add", "ME3Explorer", "", true);

            if (result != "")
            {
                FaceFX.AddName(result);
                FaceFX.Save();
            }
        }