markus / KCOM / Controls / AdjustList.xaml @ 0f6604ce
이력 | 보기 | 이력해설 | 다운로드 (1.95 KB)
1 | 0f6604ce | taeseongkim | <UserControl x:Class="KCOM.Controls.AdjustList" |
---|---|---|---|
2 | xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
||
3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
6 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
7 | xmlns:local="clr-namespace:KCOM.Controls" |
||
8 | xmlns:behavior="clr-namespace:KCOM.Behaviors" |
||
9 | xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" |
||
10 | mc:Ignorable="d" Height="450" Width="600"> |
||
11 | <Grid Margin="2"> |
||
12 | <Grid.RowDefinitions>
|
||
13 | <RowDefinition Height="Auto"/> |
||
14 | <RowDefinition/> |
||
15 | <RowDefinition/> |
||
16 | </Grid.RowDefinitions>
|
||
17 | <Grid HorizontalAlignment="Right"> |
||
18 | <Grid.ColumnDefinitions>
|
||
19 | <ColumnDefinition/> |
||
20 | <ColumnDefinition Width="4"/> |
||
21 | <ColumnDefinition/> |
||
22 | <ColumnDefinition Width="4"/> |
||
23 | <ColumnDefinition/> |
||
24 | </Grid.ColumnDefinitions>
|
||
25 | <telerik:RadButton Content="추가" Background="#3d3d3d" Foreground="White" Margin="5,0" MinWidth="60" x:Name="btnAdjustAdd" Click="Adjust_Add"/> |
||
26 | <telerik:RadButton Content="수정" Grid.Column="2" Background="#3d3d3d" Foreground="White" Margin="5,0" MinWidth="60" x:Name="btnAdjustDel" Click="Adjust_Del"/> |
||
27 | <telerik:RadButton Content="삭제" Grid.Column="4" Background="#3d3d3d" Foreground="White" Margin="5,0" MinWidth="60" x:Name="btnAdjust" Click="Adjust_Del"/> |
||
28 | </Grid>
|
||
29 | <telerik:RadGridView AutoGenerateColumns="False" ShowGroupPanel="False"> |
||
30 | <telerik:RadGridView.Columns>
|
||
31 | <telerik:GridViewDataColumn DataMemberBinding="{Binding Commant}"/> |
||
32 | </telerik:RadGridView.Columns>
|
||
33 | </telerik:RadGridView>
|
||
34 | </Grid>
|
||
35 | </UserControl> |