markus / KCOM / Views / BiddersView.xaml @ b10671a4
이력 | 보기 | 이력해설 | 다운로드 (3.15 KB)
1 |
<UserControl x:Name="userControl" x:Class="KCOM.Views.BiddersView" |
---|---|
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" FontSize="12" |
8 |
xmlns:behavior="clr-namespace:KCOM.Behaviors" |
9 |
xmlns:viewmodel="clr-namespace:KCOM.ViewModel" |
10 |
xmlns:controls ="clr-namespace:KCOM.Controls" |
11 |
xmlns:convert="clr-namespace:KCOM.Converters" |
12 |
xmlns:Behaviors="clr-namespace:KCOM.Behaviors" |
13 |
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" |
14 |
xmlns:controls1="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Data" |
15 |
mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="350" DataContext="{DynamicResource ViewModel}"> |
16 |
<UserControl.Resources>
|
17 |
<viewmodel:BiddersViewModel x:Key="ViewModel"/> |
18 |
<convert:StringMultiLineConvert x:Key="StringMultiLineConvert"/> |
19 |
</UserControl.Resources>
|
20 |
<i:Interaction.Triggers>
|
21 |
<i:EventTrigger EventName="Loaded"> |
22 |
<i:InvokeCommandAction Command="{Binding LoadedCommand}"/> |
23 |
</i:EventTrigger>
|
24 |
<i:EventTrigger EventName="Unloaded"> |
25 |
<i:InvokeCommandAction Command="{Binding ClosingCommand}"/> |
26 |
</i:EventTrigger>
|
27 |
</i:Interaction.Triggers>
|
28 |
<Grid x:Name="grid" Margin="2"> |
29 |
<Grid.ColumnDefinitions>
|
30 |
<ColumnDefinition Width="*"/> |
31 |
</Grid.ColumnDefinitions>
|
32 |
<Grid.RowDefinitions>
|
33 |
<RowDefinition Height="Auto"/> |
34 |
<RowDefinition Height="Auto"/> |
35 |
<RowDefinition/> |
36 |
</Grid.RowDefinitions>
|
37 |
<Grid HorizontalAlignment="Right" Visibility="Collapsed"> |
38 |
<Grid.ColumnDefinitions>
|
39 |
<ColumnDefinition/> |
40 |
<ColumnDefinition Width="4"/> |
41 |
<ColumnDefinition/> |
42 |
<ColumnDefinition Width="4"/> |
43 |
<ColumnDefinition/> |
44 |
</Grid.ColumnDefinitions>
|
45 |
<WrapPanel Grid.Row="1" HorizontalAlignment="Left" Orientation="Horizontal"> |
46 |
<telerik:RadButton Content="추가" Background="#3d3d3d" Foreground="White" Margin="5,0" MinWidth="60" Command="{Binding AddVPCommentCommand}"/> |
47 |
<telerik:RadToggleButton Width="20" Height="20" Command="{Binding RefreshCommand}" Margin="3"> |
48 |
<Image Stretch="Fill" Source="/KCOM;component/Resources/Images/MenuImage/Refresh.png"/> |
49 |
</telerik:RadToggleButton>
|
50 |
|
51 |
<telerik:RadToggleButton Width="15" Height="15" Command="{Binding RefreshCommand}"> |
52 |
<Image Stretch="Fill" Source="/KCOM;component/Resources/Images/MenuImage/Refresh.png"/> |
53 |
</telerik:RadToggleButton>
|
54 |
<telerik:RadGridView>
|
55 |
|
56 |
</telerik:RadGridView>
|
57 |
</WrapPanel>
|
58 |
</Grid>
|
59 |
|
60 |
</Grid>
|
61 |
</UserControl>
|