added XAML stuff
This commit is contained in:
@@ -1,22 +1,34 @@
|
||||
$HEADER$using Avalonia;
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using DeskHubSharpRevised.BLL;
|
||||
|
||||
namespace $NAMESPACE$
|
||||
namespace DeskHubSharpRevised;
|
||||
|
||||
public partial class FeedbackWindow : Window
|
||||
{
|
||||
public partial class $CLASS$ : Window
|
||||
public FeedbackWindow()
|
||||
{
|
||||
public $CLASS$()
|
||||
{
|
||||
InitializeComponent();
|
||||
InitializeComponent();
|
||||
#if DEBUG
|
||||
this.AttachDevTools();
|
||||
this.AttachDevTools();
|
||||
#endif
|
||||
}
|
||||
|
||||
private void InitializeComponent()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void InitializeComponent()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
|
||||
private void btn_discard_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void btn_send_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
EmailBLL email = new EmailBLL(txtbox_name.Text, txtbox_feedbackmessage.Text, txtbox_email.Text);
|
||||
email.CreateMessage();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user