0

也许我没有正确使用 ObjectDataProvider,但我遵循 MSDN 示例,所以我不确定出了什么问题。

目标:当我单击一个按钮时,它将通过调用一个方法“exitButtonMethod”来关闭窗口,该方法简单地执行 this.Close();。

<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!
4

1 回答 1

1

ObjectDataProvider 的目的是在 XAML 中创建可以绑定的对象。您还可以使用它绑定到对该对象调用方法的结果,这就是您要尝试做的事情。

在这里,您正在创建一个对象,其类型为Window1并绑定到 method callExitButtonMethod。因此,您无意中在窗口内创建了一个新窗口。

<ObjectDataProvider ObjectType="{x:Type local:Window1}"
                  MethodName="exitButtonMethod" x:Key="callExitButtonMethod">
    </ObjectDataProvider>

现在,新窗口在创建时也有一个窗口......等等,你会得到一个无限循环的制作窗口。

这就是为什么你得到一个堆栈溢出。

您正在尝试做的事情比您当前正在做的事情要简单得多。为了在单击按钮时调用按钮上的方法,您可以简单地执行以下操作:

<Button Click="NameOfMethodHere" />

在您的情况下,只需将Click参数添加到您的按钮并摆脱ObjectDataProvider.

编辑:还要从样式设置事件,请参阅EventSetter

于 2015-01-11T20:44:11.733 回答