# Элементы управления ## Name ``` 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; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace WpfApp6 { public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void button1_Click(object sender, RoutedEventArgs e) { button1.Content = "Привет!"; } } } ``` ``` ``` ![](./img/6.png) ``` ``` ![](./img/6.png) ``` 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; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace WpfApp6 { public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); double d = 5.6; button1.Content = d; } } } ``` ``` ``` ![](./img/7.png) ``` ``` ![](./img/8.png) ## Позиционирование контента ``` ``` ![](./img/10.png) ```