gpt4 book ai didi

wpf - 触发器不想工作。然而,它在风格上确实很有效

转载 作者:行者123 更新时间:2023-12-04 13:45:47 25 4
gpt4 key购买 nike

<Button Name="btnNewGame" Margin="120,292,450,180" Style="{StaticResource mainLobbyBtnStyle}">
<Grid Height="35" Width="200">
...
<Line Name="lineNewGame" X1="200" X2="200" Y1="0" Y2="35" ... />
</Grid>
<Button.Trigger>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Content" Value="qwerty"/>
</Trigger>
</Button.Triggers>
</Button>

我收到“'IsMouseOver' 成员无效,因为它没有合格的类型名称”。需要帮助解决这个问题。

第二个问题。我可以在按钮触发器中更改 lineNewGame 的参数吗?怎么办?

最佳答案

@NDQuattro,为什么会这样?通过在您的代码中再添加 2 行,我让它为我工作....

 <Button Name="btnNewGame" Margin="120,292,450,180">
<Grid Height="35" Width="200">
<Line Name="lineNewGame" X1="200" X2="200" Y1="0" Y2="35" ... />
</Grid>
<Button.Style>
<Style TargetType="{x:Type Button}"
BasedOn="{StaticResource mainLobbyBtnStyle}">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Content" Value="qwerty"/>
</Trigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>

关于wpf - 触发器不想工作。然而,它在风格上确实很有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10431861/

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