프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / KCOM / Controls / Alert.xaml @ b643fcca

이력 | 보기 | 이력해설 | 다운로드 (1.35 KB)

1
<UserControl x:Class="KCOM.Controls.Alert"
2
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
5
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
6
             xmlns:local="clr-namespace:KCOM.Controls"
7
             mc:Ignorable="d" 
8
             Height="85" d:DesignWidth="400">
9
             <!--d:DesignHeight="120" d:DesignWidth="400">-->
10
    <Grid Background="#FFEEEEF2">
11
        <Grid.RowDefinitions>
12
            <RowDefinition Height="47"/>
13
            <RowDefinition Height="1"/>
14
            <RowDefinition/>
15
        </Grid.RowDefinitions>
16
        <StackPanel Grid.Row="0" Margin="30,10,0,0" HorizontalAlignment="Left" >
17
            <!--<Image x:Name="Img" Source="{Binding SourceUri}"></Image>-->
18
            <TextBlock FontSize="13" x:Name="textbox" Text=""></TextBlock>
19
        </StackPanel>
20
        <StackPanel Grid.Row="1" Background="#FFCCCEDB"></StackPanel>
21
        <StackPanel Grid.Row="2" Margin="0,0,10,0" HorizontalAlignment="Right" VerticalAlignment="Center">
22
            <Button Width="70" x:Name="BtnOK" PreviewKeyDown="BtnOK_PreviewKeyDown" PreviewMouseLeftButtonDown="BtnOK_MouseLeftButtonDown">OK</Button>
23
        </StackPanel>
24
    </Grid>
25
</UserControl>
26

    
27

    
클립보드 이미지 추가 (최대 크기: 500 MB)