Grid
과 Line
이 있다고 가정하면 Grid
입니다. Line
의 너비가 항상 Grid
의 너비와 동일하게하고 싶습니다. 그래서 나는 그들을 묶었습니다uwp 데이터 바인딩 : Grid.WidthProperty의 변경 내용을 청취하는 방법
<Page
x:Class="GeoDraw.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:GeoDraw"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:x1="using:System"
mc:Ignorable="d" Background="#FF262626" RequestedTheme="Dark" Loaded="Page_Loaded">
<Grid x:Name="grid" BorderBrush="#FFE02121" Margin="20" Background="#FFD69696">
<Line Stroke="White" Y1="20" Y2="20" X1="0" X2="{Binding ElementName=grid, Path=ActualWidth}" />
</Grid>
</Page>
라인은 처음에는 그리드의 너비를 취하지 만 그리드의 크기를 변경해도 라인의 너비는 변경되지 않습니다. 어떻게 이러한 속성을 올바르게 바인딩 할 수 있습니까? 아마
정확히 !! 나는'TextBox'에 대해서도 궁금해했다. 지금은 이해. 많은 감사 앙드레 :) –