gpt4 book ai didi

wpf - 有什么方法可以在网格的特定单元上应用着色器效果

转载 作者:行者123 更新时间:2023-12-02 04:14:32 25 4
gpt4 key购买 nike

有什么方法可以在网格的特定单元上应用着色器效果。

BR

最佳答案

您不能在特定的Grid单元上应用着色器效果,但是可以在面板(如Grid)内添加Rectangle或Border控件以获得所需的效果。请记住,首先添加Rectangle,或者使用ZIndex进行播放,如下所示,这样您的代码就不会隐藏任何控件。

    <Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Rectangle Grid.Column="0" Grid.Row="1" Panel.ZIndex="0" >
<Rectangle.Style>
<Style TargetType="{x:Type Rectangle}">
<Setter Property="Fill" Value="Blue"/>
</Style>
</Rectangle.Style>
</Rectangle >
<TextBox Grid.Column="0" Grid.Row="1" Height="25" Margin="10" Text="Test 123" Panel.ZIndex="1" />
</Grid>

关于wpf - 有什么方法可以在网格的特定单元上应用着色器效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3466287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com