일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mariadb
- ipad
- CNN
- mean
- SciPy
- GT-S80
- Button
- Series
- javascript
- GitHub
- Python
- pip
- dataframe
- E-P1
- pycharm
- 삼성소프트웨어멤버십
- pandas
- Lotto
- RNN
- SPL
- imread
- DFS
- install
- keras
- synology
- Splunk
- LSTM
- Numpy
- 알고리즘
- index
Archives
- Today
- Total
잠토의 잠망경
control간 순서 정하기 본문
control 간 우선 순위 정하는 방법
<Window x :Class="WpfApplication28.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x ="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height ="350" Width="525">
<Grid >
<Grid>
<Button Width ="75" Height="23" Margin="0,0" HorizontalAlignment ="Left" VerticalAlignment="Top"> Button1</ Button>
<Button Width ="75" Height="23" Margin="15,15" HorizontalAlignment="Left" VerticalAlignment="Top">Button2 </Button>
<Button Width ="75" Height="23" Margin="30,30" HorizontalAlignment="Left" VerticalAlignment="Top">Button3 </Button>
</Grid>
<Grid Margin ="0,116,0,0">
<Button Width ="75" Height="23" Margin="0,0" Panel.ZIndex ="3" HorizontalAlignment="Left" VerticalAlignment="Top">Button1 </Button>
<Button Width ="75" Height="23" Margin="15,15" Panel.ZIndex ="2" HorizontalAlignment="Left" VerticalAlignment="Top">Button2 </Button>
<Button Width ="75" Height="23" Margin="30,30" Panel.ZIndex ="1" HorizontalAlignment="Left" VerticalAlignment="Top">Button3 </Button>
</Grid>
</Grid >
</Window> |
Comments