예제 #1
0
		void OnMenu_FileOpen (object o, EventArgs args) 
		{
			FileSelectionDialog openFileDialog = 
				new FileSelectionDialog ("Open File",
				new FileSelectionEventHandler (OnOpenFile));
		}
예제 #2
0
		void SaveAs() 
		{
			FileSelectionDialog openFileDialog = 
				new FileSelectionDialog ("File Save As",
				new FileSelectionEventHandler (OnSaveAsFile));
		}
예제 #3
0
		void ExecuteAndSaveResultsToFile(ExecuteOutputType oType) 
		{
			outType = oType;
			FileSelectionDialog openFileDialog = 
				new FileSelectionDialog ("Results File Save As",
				new FileSelectionEventHandler (OnSaveExeOutFile));
		}