예제 #1
0
        private void itemExcellentOptionzToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fpath = OpenDialogZ();

            if (string.IsNullOrEmpty(fpath))
            {
                return;
            }

            ItemExcellentOption       Decoder = new ItemExcellentOption(fpath, BmdFile.FileType.ItemGlow);
            ItemExcellentOptionEditor editor  = new ItemExcellentOptionEditor(Decoder);

            editor.Show();
        }
예제 #2
0
파일: Main.cs 프로젝트: stimpy76/OpenMuS9
        private void itemExcellentOptionzToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fpath = OpenDialogZ();
            if (string.IsNullOrEmpty(fpath))
                return;

            ItemExcellentOption Decoder = new ItemExcellentOption(fpath, BmdFile.FileType.ItemGlow);
            ItemExcellentOptionEditor editor = new ItemExcellentOptionEditor(Decoder);
            editor.Show();
        }