-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangeColumn.xaml
More file actions
34 lines (32 loc) · 1.93 KB
/
changeColumn.xaml
File metadata and controls
34 lines (32 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Controls:MetroWindow x:Class="TheGUIAndSQLApp.ChangeColumn"
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:TheGUIAndSQLApp"
mc:Ignorable="d"
xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
Title="Новая таблица"
Height="400"
Width="708"
BorderBrush="{DynamicResource AccentColorBrush}"
BorderThickness="1"
WindowStartupLocation="CenterScreen"
ResizeMode="CanMinimize"
Closing="MetroWindow_Closing">
<ScrollViewer VerticalScrollBarVisibility="Auto">
<Grid x:Name="MainGrid" ScrollViewer.CanContentScroll="True">
<Label x:Name="columnsName" Content="Имя столбца" FontSize="16" HorizontalAlignment="Left" Margin="30,15,0,0" VerticalAlignment="Top"/>
<Label x:Name="typeOfData" Content="Тип данных" FontSize="16" HorizontalAlignment="Left" Margin="200,15,0,0" VerticalAlignment="Top"/>
<Label x:Name="columnsValue" Content="Значение" FontSize="16" HorizontalAlignment="Left" Margin="370,15,0,0" VerticalAlignment="Top"/>
<Label x:Name="columnsNewValue" Content="Новое значение" FontSize="16" Margin="540,15,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Width="130"/>
</Grid>
</ScrollViewer>
<Controls:MetroWindow.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/Blue.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Controls:MetroWindow.Resources>
</Controls:MetroWindow>