markus / KCOM / Controls / CAD / CadResultViewer.xaml @ d97dbc7f
이력 | 보기 | 이력해설 | 다운로드 (1.82 KB)
1 | 684ef11c | ljiyeon | <Window x:Class="KCOM.Controls.CadResultViewer" |
---|---|---|---|
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
4 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
5 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
6 | xmlns:local="clr-namespace:KCOM.Controls" |
||
7 | mc:Ignorable="d" |
||
8 | Height="Auto" Width="Auto"> |
||
9 | |||
10 | |||
11 | <Grid>
|
||
12 | <Grid.ColumnDefinitions>
|
||
13 | <ColumnDefinition Width="66*"/> |
||
14 | <ColumnDefinition Width="29*"/> |
||
15 | </Grid.ColumnDefinitions>
|
||
16 | <Grid Name="grid1" Grid.ColumnSpan="2"> |
||
17 | <Grid.ColumnDefinitions>
|
||
18 | <ColumnDefinition Width="1*"/> |
||
19 | </Grid.ColumnDefinitions>
|
||
20 | |||
21 | <Grid Name="grid2"> |
||
22 | <Grid.RowDefinitions>
|
||
23 | <RowDefinition Height="30"/> |
||
24 | <RowDefinition Height="100*"/> |
||
25 | </Grid.RowDefinitions>
|
||
26 | <Grid Name="grid3" Grid.Row="0"> |
||
27 | <Grid.ColumnDefinitions>
|
||
28 | <ColumnDefinition Width="2.5*"/> |
||
29 | <ColumnDefinition Width="7.5*"/> |
||
30 | </Grid.ColumnDefinitions>
|
||
31 | <Button Content="open" Grid.Column="0" Padding="5" Background="#3d3d3d" Foreground="White" x:Name="button1" Click="button1_Click"/> |
||
32 | <!-- -->
|
||
33 | <TextBox Margin="10,2,0,-2" Background="#FFF3F3F3" Grid.Column="1" BorderThickness="0.5" VerticalContentAlignment="Center" Text="" x:Name="filepath"/> |
||
34 | </Grid>
|
||
35 | <local:CustomImage2 Grid.Row="1" x:Name="dwgControl" Grid.Column="0" SizeChanged="dwgControl_SizeChanged" MouseDown="DwgControl_MouseDown" Background="Azure"/> |
||
36 | </Grid>
|
||
37 | </Grid>
|
||
38 | </Grid>
|
||
39 | </Window> |