1

好的,所以我修改了选项卡控件模板以添加两个按钮,一个用于打开,一个用于与其他选项卡一起保存。

我需要做的是让按钮运行窗口内的 OpenSave/CloseSave 功能。每个窗口都有自己的打开和保存功能,因为它们会有所不同,这就是为什么我需要它来使用窗口内的功能。

<Style x:Key="EditorTabControl" TargetType="{x:Type TabControl}">
    <Setter Property="SnapsToDevicePixels" Value="True" />
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type TabControl}">
                <Grid SnapsToDevicePixels="True">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="*" />
                        <RowDefinition Height="0" />
                        <RowDefinition Height="auto" />
                    </Grid.RowDefinitions>
                    <Border Grid.Row="2" Panel.ZIndex="1" Background="#fafafa" Padding="10" BorderBrush="#ededed" BorderThickness="0 1 0 0">
                        <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
                            <Button Content="Open" Style="{StaticResource EditorButtonStyle}"/>
                            <Button Content="Save" Style="{StaticResource EditorButtonStyle}"/>
                            <TabPanel IsItemsHost="True"/>
                        </StackPanel>
                    </Border>
                    <Border Grid.Row="0" BorderThickness="0" BorderBrush="#696969" Background="#FFF">
                        <ContentPresenter Content="{TemplateBinding SelectedContent}" />
                    </Border>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

那么我怎样才能让控制模板运行一个在它使用的窗口中的函数呢?

4

1 回答 1

0

您可以使用命令和绑定来执行此操作。您可以在主窗口中设置保存和关闭命令,然后使用RelativeSource 进行绑定。你可以有一个这样的窗口:

public partial class MainWindow : Window
{


    public MainWindow()
    {
        InitializeComponent();
    }

    public ICommand Open { get; set; }    //Need to implement, maybe could be a RelayCommand or DelegateCommand, you may search in the internet
    public ICommand Save { get; set; }
}

在 xaml 代码中:

                     <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
                        <Button Content="Open" Style="{StaticResource EditorButtonStyle}" Command="{Open, RelativeSource={RelativeSource AncestorType={x:Type Window}}}"/>
                        <Button Content="Save" Style="{StaticResource EditorButtonStyle}" Command="{Save, RelativeSource={RelativeSource AncestorType={x:Type Window}}}"/>
                        <TabPanel IsItemsHost="True"/>
                    </StackPanel>

希望这可以帮助...

于 2013-03-21T20:57:06.717 回答