</DataGridTextColumn>
<DataGridTextColumn Header="Должность" Binding="{Binding Position}" Width="*">
<DataGridColumn.HeaderStyle>
<Style TargetType="DataGridColumnHeader">
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Background" Value="Orange" />
<Setter Property="TextBlock.Foreground" Value="#000" />
</Style>
</DataGridColumn.HeaderStyle>
<DataGridTextColumn.ElementStyle>
<Style>
<Setter Property="TextBlock.TextWrapping" Value="Wrap" />
<Setter Property="TextBlock.TextAlignment" Value="Center"/>
<Setter Property="TextBlock.Background" Value="#FABF4D" />
</Style>
</DataGridTextColumn.ElementStyle>
</DataGridTextColumn>
<DataGridTextColumn Header="Телефон" Binding="{Binding PhoneNumber}" Width="*" >
<DataGridColumn.HeaderStyle>
<Style TargetType="DataGridColumnHeader">
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Background" Value="#000" />
<Setter Property="Foreground" Value="#FFF" />
</Style>
</DataGridColumn.HeaderStyle>
<DataGridTextColumn.ElementStyle>
<Style>
<Setter Property="TextBlock.TextWrapping" Value="Wrap" />
<Setter Property="TextBlock.TextAlignment" Value="Center"/>
<Setter Property="TextBlock.Background" Value="#3E3E42" />
<Setter Property="TextBlock.Foreground" Value="#FFF" />
</Style>
</DataGridTextColumn.ElementStyle>
</DataGridTextColumn>
<DataGridHyperlinkColumn Header="Почта" Binding="{Binding Email}" Width="250" Visibility="Visible">
<DataGridColumn.HeaderStyle>
<Style TargetType="DataGridColumnHeader">
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Background" Value="Orange" />
<Setter Property="TextBlock.Foreground" Value="#000" />
</Style>
</DataGridColumn.HeaderStyle>
<DataGridHyperlinkColumn.ElementStyle>
<Style>
<Setter Property="TextBlock.TextWrapping" Value="Wrap" />
<Setter Property="TextBlock.TextAlignment" Value="Center"/>
<Setter Property="TextBlock.Background" Value="#FABF4D" />
<Setter Property="TextBlock.FontSize" Value="12"/>
</Style>
</DataGridHyperlinkColumn.ElementStyle>
</DataGridHyperlinkColumn>
</DataGrid.Columns>
</DataGrid>
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
<Button Content="Добавить" Margin="10" Click="Add_Click" />
<Button Content="Изменить" Margin="10" Click="Edit_Click" />
<Button Content="Удалить" Margin="10" Click="Delete_Click" />
</StackPanel>
</Grid>
</Window>
<Window x:Class="Phonebook.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Phonebook"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
Title="Телефонный справочник by Nygmet" Height="550" Width="900">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="50" />
</Grid.RowDefinitions>
<DataGrid x:Name="phonesList" ItemsSource="{Binding}" AutoGenerateColumns="False"
CanUserReorderColumns="True" CanUserResizeColumns="True" >
<DataGrid.Columns>
<DataGridTextColumn Header="ФИО" Binding="{Binding Name}" Width="*">
<DataGridColumn.HeaderStyle>
<Style TargetType="DataGridColumnHeader">
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Background" Value="Orange" />
<Setter Property="TextBlock.Foreground" Value="#000" />
<Setter Property="Padding" Value="10" />
<Setter Property="TextBlock.TextAlignment" Value="Center" />
</Style>
</DataGridColumn.HeaderStyle>
<DataGridTextColumn.ElementStyle>
<Style>
<Setter Property="TextBlock.TextWrapping" Value="Wrap" />
<Setter Property="TextBlock.TextAlignment" Value="Center"/>
<Setter Property="TextBlock.Background" Value="#FABF4D" />
<Setter Property="TextBlock.FontSize" Value="12" />
</Style>
</DataGridTextColumn.ElementStyle>
</DataGridTextColumn>
<DataGridTextColumn Header="Организация" Binding="{Binding Organisation}" Width="*" >
<DataGridColumn.HeaderStyle>
<Style TargetType="DataGridColumnHeader" >
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Background" Value="#000" />
<Setter Property="Foreground" Value="#FFF" />
<Setter Property="TextBlock.TextAlignment" Value="Center" />
</Style>
</DataGridColumn.HeaderStyle>
<DataGridTextColumn.ElementStyle>
<Style>
<Setter Property="TextBlock.TextWrapping" Value="Wrap" />
<Setter Property="TextBlock.TextAlignment" Value="Center"/>
<Setter Property="TextBlock.Background" Value="#3E3E42" />
<Setter Property="TextBlock.Foreground" Value="#FFF" />
</Style>
</DataGridTextColumn.ElementStyle>