9 changed files with 96 additions and 40 deletions
@ -1,9 +1,9 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<Window |
<Window |
||||||
x:Class="ICSharpCode.SharpDevelop.Gui.Dialogs.ReferenceDialog.AdvancedServiceDialog" |
x:Class="ICSharpCode.SharpDevelop.Gui.Dialogs.ReferenceDialog.ServiceReference.AdvancedServiceDialog" |
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
xmlns:local="clr-namespace:ICSharpCode.SharpDevelop.Gui.Dialogs.ReferenceDialog" |
xmlns:local="clr-namespace:ICSharpCode.SharpDevelop.Gui.Dialogs.ReferenceDialog.ServiceReference" |
||||||
xmlns:core="http://icsharpcode.net/sharpdevelop/core" |
xmlns:core="http://icsharpcode.net/sharpdevelop/core" |
||||||
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui" |
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui" |
||||||
xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets" |
xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets" |
@ -0,0 +1,43 @@ |
|||||||
|
/* |
||||||
|
* Created by SharpDevelop. |
||||||
|
* User: Peter Forstmeier |
||||||
|
* Date: 02.11.2011 |
||||||
|
* Time: 19:49 |
||||||
|
* |
||||||
|
* To change this template use Tools | Options | Coding | Edit Standard Headers. |
||||||
|
*/ |
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
using System.Windows; |
||||||
|
using System.Windows.Controls; |
||||||
|
using System.Windows.Data; |
||||||
|
using System.Windows.Documents; |
||||||
|
using System.Windows.Input; |
||||||
|
using System.Windows.Media; |
||||||
|
|
||||||
|
namespace ICSharpCode.SharpDevelop.Gui.Dialogs.ReferenceDialog.ServiceReference |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for AdvancedServiceDialog.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class AdvancedServiceDialog : Window |
||||||
|
{ |
||||||
|
public AdvancedServiceDialog() |
||||||
|
{ |
||||||
|
InitializeComponent(); |
||||||
|
} |
||||||
|
|
||||||
|
void okButtonClick(object sender, RoutedEventArgs e) |
||||||
|
{ |
||||||
|
this.DialogResult = true; |
||||||
|
Close(); |
||||||
|
} |
||||||
|
|
||||||
|
void cancelButtonClick(object sender, RoutedEventArgs e) |
||||||
|
{ |
||||||
|
this.DialogResult = false; |
||||||
|
Close(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue