Пример #1
0
        private void OnIncludePathBrowseButtonClick(object sender, EventArgs e)
        {
            AddPathDialog dialog = new AddPathDialog(configuration.SourceDirectory);

            dialog.Run();
            includePathEntry.Text = dialog.SelectedPath;
        }
Пример #2
0
        private void OnBrowseButtonClick(object sender, EventArgs e)
        {
            AddPathDialog dialog = new AddPathDialog(configuration.OutputDirectory);

            dialog.Run();
            outputPathTextEntry.Text = dialog.SelectedPath;
        }
Пример #3
0
		private void OnIncludePathBrowseButtonClick (object sender, EventArgs e)
		{
			AddPathDialog dialog = new AddPathDialog (configuration.SourceDirectory);
			dialog.Run ();
			includePathEntry.Text = dialog.SelectedPath;
		}
Пример #4
0
		private void OnBrowseButtonClick (object sender, EventArgs e)
		{
			AddPathDialog dialog = new AddPathDialog (configuration.OutputDirectory);
			dialog.Run ();
			outputPathTextEntry.Text = dialog.SelectedPath;
		}