mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-07 07:56:07 +02:00
Add new create wpf app article (#193)
This commit is contained in:
+35
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace Names
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for Final.xaml
|
||||
/// </summary>
|
||||
public partial class Final : Window
|
||||
{
|
||||
public Final()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
//<FinalCode>
|
||||
private void ButtonAddName_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
if (!string.IsNullOrWhiteSpace(txtName.Text) && !lstNames.Items.Contains(txtName.Text))
|
||||
lstNames.Items.Add(txtName.Text);
|
||||
}
|
||||
//</FinalCode>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user