bestsource

코드 뒤에 있는 별 모양의 그리드

bestsource 2023. 4. 14. 21:58
반응형

코드 뒤에 있는 별 모양의 그리드

다음과 같은 그리드가 있습니다.

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="0.5*" />
        <RowDefinition Height="0.5*" />
    </Grid.RowDefinitions>
</Grid>

어떻게 하면Height = "0.5*"암호로 입력하시겠습니까?

다음을 사용할 수 있습니다.

rowDefinition.Height = new GridLength(0.5, GridUnitType.Star);
grid.RowDefinitions[0].Height = new GridLength(0.5, GridUnitType.Star);

언급URL : https://stackoverflow.com/questions/5459595/grid-star-size-in-code-behind

반응형