我试图弄清楚是否可以在 SketchFlow/ExpressionBlend 中设置具有 ChangeProperty 行为的按钮的 Enabled 属性。行为中似乎没有可用的 Enabled 属性。谢谢!账单
问问题
436 次
1 回答
2
这是执行您上面提到的操作的 xaml(在 Silverlight 中)。它在 WPF 中的工作方式相同。如果这是混淆的来源,则该属性被命名为 IsEnabled:
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"
x:Class="SilverlightApplication7.MainPage"
Width="640" Height="480">
<Grid x:Name="LayoutRoot" Background="White">
<Button x:Name="button" Content="Button" HorizontalAlignment="Left" Height="58" Margin="225,124,0,0" VerticalAlignment="Top" Width="79"/>
<Button Content="Button" HorizontalAlignment="Left" Margin="225,230,0,207" Width="50">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<ei:ChangePropertyAction TargetName="button" PropertyName="IsEnabled" Value="False"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>
</Grid>
</UserControl>
于 2010-09-30T14:34:55.340 回答