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