WPF自定义SplitView控件

时间:2016-10-14 15:03:41

标签: c# wpf xaml

我只是想开始说我已经看到过相同问题的类似帖子,但他们提供了一个不适合我的方案的解决方案。我正在制作一个SplitView控件,如下所示。问题是Control有3个区域,用户可以放置他们想要的任何控件,但这些控件不能通过此错误命名:

  

无法设置名称属性值' Item1'在元素' ListViewItem'。 ' ListViewItem的'是在元素' SplitView'的范围内,当它在另一个范围内定义时已经注册了名称。

我该如何解决这个问题?我不希望这个控件的实现必须总是添加一些代码来解决这个错误。我可以在此控件中添加3个模板区域,以便用户可以在每个区域内创建自己的模板,包含他们想要的内容。我该怎么做?我对其他想法持开放态度。

标记

<UserControl x:Name="ThisControl" x:Class="ns.SplitView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" DataContext="{Binding RelativeSource={RelativeSource Self}}"
             d:DesignHeight="300" d:DesignWidth="300">

    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition/>
        </Grid.ColumnDefinitions>

        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition/>
        </Grid.RowDefinitions>

        <Button Margin="10" Grid.Row="0" Grid.Column="0" x:Name="OpenPaneButton" Width="50" Height="50" Click="OpenPaneButton_Click" Background="{x:Null}" BorderBrush="{x:Null}" Focusable="False" >
            <Viewbox>
                <Canvas Width="300" Height="210">
                    <Path StrokeThickness="1" StrokeDashArray="" StrokeDashCap="Flat" StrokeDashOffset="0" StrokeStartLineCap="Flat" StrokeEndLineCap="Flat" StrokeLineJoin="Miter" StrokeMiterLimit="10" Stroke="{Binding HamburgerButtonColor, ElementName=ThisControl}" Fill="{Binding HamburgerButtonColor, ElementName=ThisControl}">
                    <Path.Data>
                        <RectangleGeometry Rect="0,0,300,50" RadiusX="25" RadiusY="25" />
                    </Path.Data>
                </Path>
                    <Path StrokeThickness="1" StrokeDashArray="" StrokeDashCap="Flat" StrokeDashOffset="0" StrokeStartLineCap="Flat" StrokeEndLineCap="Flat" StrokeLineJoin="Miter" StrokeMiterLimit="10" Stroke="{Binding HamburgerButtonColor, ElementName=ThisControl}" Fill="{Binding HamburgerButtonColor, ElementName=ThisControl}">
                    <Path.Data>
                        <RectangleGeometry Rect="0,80,300,50" RadiusX="25" RadiusY="25" />
                    </Path.Data>
                </Path>
                    <Path StrokeThickness="1" StrokeDashArray="" StrokeDashCap="Flat" StrokeDashOffset="0" StrokeStartLineCap="Flat" StrokeEndLineCap="Flat" StrokeLineJoin="Miter" StrokeMiterLimit="10" Stroke="{Binding HamburgerButtonColor, ElementName=ThisControl}" Fill="{Binding HamburgerButtonColor, ElementName=ThisControl}">
                    <Path.Data>
                        <RectangleGeometry Rect="0,160,300,50" RadiusX="25" RadiusY="25" />
                    </Path.Data>
                </Path>
            </Canvas>
        </Viewbox>
        </Button>

        <ContentPresenter x:Name="MainTitleContent" Panel.ZIndex="1" Content="{Binding TitleContent, ElementName=ThisControl}" Grid.Row="0" Grid.Column="1" Focusable="True"/>
        <ContentPresenter x:Name="Pane" Panel.ZIndex="1" Grid.ColumnSpan="2" Grid.Column="0" Grid.Row="0" Grid.RowSpan="2" Width="0" HorizontalAlignment="Left" Content="{Binding PaneContent, ElementName=ThisControl}" LostFocus="Pane_LostFocus" LostMouseCapture="Pane_LostMouseCapture" LostKeyboardFocus="Pane_LostKeyboardFocus" LostTouchCapture="Pane_LostTouchCapture" LostStylusCapture="Pane_LostStylusCapture" Focusable="True"/>
        <ContentPresenter x:Name="Content" Grid.ColumnSpan="2" Grid.Column="0" Grid.Row="1" Content="{Binding MainContent, ElementName=ThisControl}" Focusable="True"/>
    </Grid>
</UserControl>

背后的代码

using System;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;

namespace ns
{
    public partial class SplitView
    {
        /// <summary>
        /// A simple state to know if the pane is open
        /// </summary>
        public bool PaneIsOpen
        {
            get { return (bool)GetValue(PaneIsOpenProperty); }
            set { SetValue(PaneIsOpenProperty, value); }
        }
        public static readonly DependencyProperty PaneIsOpenProperty = DependencyProperty.Register("PaneIsOpen", typeof(bool), typeof(SplitView));

        public SolidColorBrush HamburgerButtonColor
        {
            get { return (SolidColorBrush)GetValue(HamburgerButtonColorProperty); }
            set { SetValue(HamburgerButtonColorProperty, value); }
        }
        public static readonly DependencyProperty HamburgerButtonColorProperty = DependencyProperty.Register("HamburgerButtonColor", typeof(SolidColorBrush), typeof(SplitView), new UIPropertyMetadata(new SolidColorBrush(Colors.Black)));

        public double PaneWidth
        {
            get { return (double)GetValue(PaneWidthProperty); }
            set { SetValue(PaneWidthProperty, value); }
        }
        public static readonly DependencyProperty PaneWidthProperty = DependencyProperty.Register("PaneWidth", typeof(double), typeof(SplitView), new PropertyMetadata(null));
        public object MainContent
        {
            get { return GetValue(MainContentProperty); }
            set { SetValue(MainContentProperty, value); }
        }
        public static readonly DependencyProperty MainContentProperty = DependencyProperty.Register("MainContent", typeof(object), typeof(SplitView), new PropertyMetadata(null));

        public object PaneContent
        {
            get { return GetValue(PaneContentProperty); }
            set { SetValue(PaneContentProperty, value); }
        }
        public static readonly DependencyProperty PaneContentProperty = DependencyProperty.Register("PaneContent", typeof(object), typeof(SplitView), new PropertyMetadata(null));

        public object TitleContent
        {
            get { return GetValue(TitleContentProperty); }
            set { SetValue(TitleContentProperty, value); }
        }
        public static readonly DependencyProperty TitleContentProperty = DependencyProperty.Register("TitleContent", typeof(object), typeof(SplitView), new PropertyMetadata(null));

        private readonly Duration PaneAnimationDuration = new Duration(new TimeSpan());

        private DoubleAnimation ClosePaneAnimation => new DoubleAnimation {Duration = PaneAnimationDuration, To = 0, From = PaneWidth };
        private DoubleAnimation OpenPaneAnimation => new DoubleAnimation {Duration = PaneAnimationDuration, To = PaneWidth, From = 0 };

        public SplitView()
        {
            InitializeComponent();
        }

        private void OpenPaneButton_Click(object sender, RoutedEventArgs e)
        {
            PaneIsOpen = !PaneIsOpen;
            //Debug.WriteLine($"pane is open: {PaneIsOpen}");

            if (PaneIsOpen)
            {
                Pane.BeginAnimation(WidthProperty, OpenPaneAnimation);
                Pane.Focus();
            }

            else
            {
                Pane.BeginAnimation(WidthProperty, ClosePaneAnimation);
            }
        }

        private void Pane_LostFocus(object sender, RoutedEventArgs e)
        {
            PaneLostFocus();
            e.Handled = true;
        }

        private void Pane_LostMouseCapture(object sender, MouseEventArgs e)
        {
            PaneLostFocus();
            e.Handled = true;
        }

        private void PaneLostFocus()
        {
            if (PaneIsOpen)
            {
                PaneIsOpen = false;
                Pane.BeginAnimation(WidthProperty, ClosePaneAnimation);
            }
        }

        private void Pane_LostKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
        {
            PaneLostFocus();
            e.Handled = true;
        }

        private void Pane_LostTouchCapture(object sender, TouchEventArgs e)
        {
            PaneLostFocus();
            e.Handled = true;
        }

        private void Pane_LostStylusCapture(object sender, StylusEventArgs e)
        {
            PaneLostFocus();
            e.Handled = true;
        }
    }
}

实施

<customControls:SplitView x:Name="SplitView" PaneWidth="250" HamburgerButtonColor="{StaticResource AccentColorBrush2}">
        <customControls:SplitView.MainContent>
            <Grid>

            </Grid>
        </customControls:SplitView.MainContent>
        <customControls:SplitView.PaneContent>
            <Grid Background="White">
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition/>
                </Grid.RowDefinitions>

                <TextBlock Text="Navigation" Style="{StaticResource Header1}"  Margin="10,5,5,5"/>
<!-- I can't name controls in these content areas -->
                <ListView  Grid.Row="1" BorderThickness="0" SelectionChanged="PaneItemsListView_SelectionChanged">
                    <ListViewItem x:Name="Item1" Style="{StaticResource SplitViewItemsStyle}" ">
                        <TextBlock Text="Project Explorer" Margin="20,5,10,5"/>
                    </ListViewItem>
                    <ListViewItem Style="{StaticResource SplitViewItemsStyle}" Tag="FieldServicesItem">
                        <TextBlock Text="Field Services" Margin="20,5,10,5"/>
                    </ListViewItem>
                    <ListViewItem Style="{StaticResource SplitViewItemsStyle}" Tag="ReportManagerItem">
                        <TextBlock Text="Report Manager" Margin="20,5,10,5"/>
                    </ListViewItem>
                </ListView>
            </Grid>
        </customControls:SplitView.PaneContent>
        <customControls:SplitView.TitleContent>
            <Grid>
                <TextBlock HorizontalAlignment="Center" Text="Current View" VerticalAlignment="Center" Style="{StaticResource Header1}"/>
            </Grid>
        </customControls:SplitView.TitleContent>
    </customControls:SplitView>

0 个答案:

没有答案
相关问题