WPF - 添加ObjectDataProvider会破坏我的设计器

时间:2015-01-11 18:52:07

标签: c# .net wpf triggers objectdataprovider

也许我没有正确使用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!

1 个答案:

答案 0 :(得分:0)

ObjectDataProvider的目的是在XAML中创建可绑定的对象。您还可以使用它绑定到在该对象上调用方法的结果,这正是您尝试执行的操作。

您要创建一个 new 对象,其类型为Window1并绑定到方法callExitButtonMethod。因此,您无意中在窗口内创建了一个新窗口。

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

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

这就是你得到堆栈溢出的原因。

您要做的事情比您目前所做的要简单得多。要在单击按钮时调用按钮上的方法,您只需执行以下操作:

<Button Click="NameOfMethodHere" />

在您的情况下,只需将Click参数添加到按钮中即可删除ObjectDataProvider

编辑:另外,要设置样式中的事件,请参阅EventSetter