我想在WPF中创建一个On / Off按钮,我想让它在用户点击它时改变其外观(如果它在关闭时切换为关闭,如果它关闭切换为打开)使用图像。 我将想要使用的图像添加到资源中:
<Window.Resources>
<Image x:Key="Off1" Source="/WPFApplication;component/Images/off_button.png" Height="30" Width="70" />
<Image x:Key="On1" Source="/WPFApplication;component/Images/on_button.png" Height="30" Width="70"/>
</Window.Resources>
事件代码是,“flag”是一个布尔局部变量,初始化为true:
private void OnOff1Btn_Click(object sender, RoutedEventArgs e)
{
if (flag)
{
OnOff1Btn.Content = FindResource("Off1");
flag = false;
}
else
{
OnOff1Btn.Content = FindResource("On1");
flag = true;
}
}
现在我需要创建2个开/关按钮,其行为相同。 当我尝试为第二个按钮使用相同的资源时,我得到了一个例外:
Specified element is already the logical child of another element. Disconnect it first.
我可以在第二个按钮中使用相同的图像资源,还是必须将图像作为具有不同按键的资源再次添加?
答案 0 :(得分:13)
将您的样式中的共享设为false
<StackPanel >
<StackPanel.Resources>
<Image x:Key="flag" Source="flag-italy-icon.png" Width="10" x:Shared="false"/>
</StackPanel.Resources>
<ContentControl Content="{DynamicResource flag}" />
<ContentControl Content="{DynamicResource flag}" />
答案 1 :(得分:11)
您应该使用BitmapImage进行图片共享。
<BitmapImage x:Key="Off1" UriSource="/WPFApplication;component/Images/off_button.png" Height="30" Width="70" />
<BitmapImage x:Key="On1" UriSource="/WPFApplication;component/Images/on_button.png" Height="30" Width="70"/>
之后,您可以使用BitmapImage创建多个Image
在XAML中
<Button ..>
<Button.Content>
<Image Source="{StaticResource Off1}" />
</Button.Content>
</Button>
在代码中
Image image = new Image();
image.Source = FindResource("Off1");
OnOff1Btn.Content = image;
答案 2 :(得分:1)
虽然@Tilak的解决方案绝对是一种方法,但你也可以通过Style.Triggers
以下是一个示例(假设Flag
是公开属性公开标志):
<Button Content="{StaticResource On1}">
<Button.Style>
<Style>
<Style.Triggers>
<DataTrigger Binding="{Binding Flag}" Value="false">
<Setter Property="Content" Value="{StaticResource Off1}" />
</DataTrigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>