private void LoadFile(string fileName)
        {
            LoadFileCommand command = new LoadFileCommand(fileName, Context);

            command.Execute();
        }
예제 #2
0
        public void LoadFile(string fileName)
        {
            LoadFileCommand command = new LoadFileCommand(fileName, this);

            command.Execute();
        }