也许我没有正确使用ObjectDataProvider,但我遵循MSDN示例,所以我不确定出了什么问题。
目标:当我单击一个按钮时,它将通过调用一个方法"exitButtonMethod"来关闭窗口,该方法很简单。关闭();.
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:WpfApplication1"
Title="Window1" WindowStyle="None" AllowsTransparency="True"
WindowStartupLocation="CenterScreen" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Height="254" Width="438" Opacity="1" Background="{x:Null}">
<Window.Resources>
<ObjectDataProvider ObjectType="{x:Type local:Window1}"
MethodName="exitButtonMethod" x:Key="callExitButtonMethod">
</ObjectDataProvider>
<Style x:Key="ExitButtons" TargetType="{x:Type Button}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate x:Name="exitButtonTemplate" TargetType="Button">
<Grid>
<Ellipse x:Name="exitButtonEllipse" Fill="#597E0000"/>
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsPressed" Value="True">
<Setter TargetName="exitButtonEllipse" Property="Fill" Value="#897E0000" />
<Binding Source="{StaticResource callExitButtonMethod}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
<Grid Width="400" Height="200" Opacity="1">
<Rectangle Height="200" HorizontalAlignment="Left" VerticalAlignment="Top" Name="rectangle1" Stroke="#FF7E0000" Width="400" RadiusX="40" RadiusY="40" Fill="#64860000" StrokeThickness="3" />
<Button Style="{StaticResource ExitButtons}" Content="X" Height="25" Width="25" Margin="359,16,16,0" VerticalAlignment="Top" Focusable="True" FontSize="15" FontFamily="PMingLiU" Foreground="#FF7E0000" Opacity="1"/>
</Grid>
错误在于它只是破坏了我的设计器,并在设计器中给了我以下错误:
System.Runtime.Remoting.RemotingException
[228940] Designer process terminated unexpectedly!
ObjectDataProvider 的目的是在 XAML 中创建可以绑定到的对象。您还可以使用它来绑定到在该对象上调用方法的结果,这就是您尝试执行的操作。
在这里,您将创建一个具有 Window1
类型的新对象,并将其绑定到方法 callExitButtonMethod
。因此,您无意中在窗口中创建了一个新窗口。
<ObjectDataProvider ObjectType="{x:Type local:Window1}"
MethodName="exitButtonMethod" x:Key="callExitButtonMethod">
</ObjectDataProvider>
现在,新窗口在创建时,内部也有一个窗口......等等,你会得到一个制作窗户的无限循环。
这就是您出现堆栈溢出的原因。
你正在尝试做的事情比你目前正在做的事情要简单得多。为了在单击按钮时调用按钮上的方法,您只需执行以下操作:
<Button Click="NameOfMethodHere" />
在您的情况下,只需将 Click
参数添加到您的按钮并摆脱ObjectDataProvider
.
编辑:同样要从样式设置事件,请参阅事件设置器。