Inheritance: NekoKun.UI.LynnForm
Example #1
0
        private void menuEditFindAll_Click(object sender, EventArgs e)
        {
            var dialog = new FindAllDialog();

            dialog.ShowDialog();

            if (dialog.DialogResult == DialogResult.OK)
            {
                var keyword = dialog.Keyword;
                var result  = FileManager.FindAll(keyword);
                var file    = new FindAllResultFile(keyword, result);
                file.ShowEditor();
                try
                {
                    //TODO: file.Editor.Show(NekoKun.Core.Application.Logger.Editor.Pane, NekoKun.Core.Application.Logger.Editor);
                }
                catch { }
            }
        }
Example #2
0
        private void menuEditFindAll_Click(object sender, EventArgs e)
        {
            var dialog = new FindAllDialog();
            dialog.ShowDialog();

            if (dialog.DialogResult == DialogResult.OK)
            {
                var keyword = dialog.Keyword;
                var result = FileManager.FindAll(keyword);
                var file = new FindAllResultFile(keyword, result);
                file.ShowEditor();
                try
                {
                    //TODO: file.Editor.Show(NekoKun.Core.Application.Logger.Editor.Pane, NekoKun.Core.Application.Logger.Editor);
                }
                catch { }
            }
        }