3

タブを含む領域の左右にスクロール ボタンを表示する、一種の単一行タブ コントロールを WPF に実装しようとしています。タブは、カスタム コントロール内に実装されます。スクロール ボタンは、ウィンドウが小さすぎてすべてのタブを表示できない場合にのみ表示されます。境界線をドラッグしてウィンドウのサイズを変更すると、すべてが期待どおりに機能します。ただし、ウィンドウを最大化して復元すると、右スクロール ボタンは非表示のままになります。

Visibilityこの問題は、右スクロール ボタンのプロパティが、カスタム コントロールの Measure パス内で更新されるカスタム コントロールの依存関係プロパティにデータ バインドされている場合にのみ発生するようです。

私の質問は、ここでWPFを正しく使用していますか、それとも別の方法で行う必要があるものがありますか? (注: データ バインディングとカスタム コントロールを使用する必要があるため、まったく異なるアプローチを提案する回答は避けてください。)

問題を説明する小さなサンプル プログラムを次に示します。

幅が小さい場合:

小窓

幅が大きい場合:

大きな窓

サンプル プログラムのファイルは次のとおりです。

MainWindow.xaml:

<Window x:Class="GridTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:gridTest="clr-namespace:GridTest"
        Title="MainWindow" Height="350" Width="525">
    <Grid x:Name="theGrid">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="Auto"/>
        </Grid.ColumnDefinitions> 
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Button x:Name="btnScrollLeft" Content="&lt;" Grid.Row="0" Grid.Column="0" Width="30"/>
        <gridTest:MyCustomControl x:Name="cust" Grid.Row="0" Grid.Column="1"/>
        <Button x:Name="btnScrollRight" Content="&gt;" Grid.Row="0" Grid.Column="2" Width="30"
                Visibility="{Binding ElementName=cust, Path=ShowButton}"/>
        <TextBox Text="The content goes here..." Grid.Row="1" Grid.ColumnSpan="3"
                 Background="LightGreen" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/>
        <Button x:Name="btnRedraw" Grid.Row="1" Grid.Column="1" Content="Redraw" VerticalAlignment="Bottom"
                HorizontalAlignment="Center" Click="btnRedraw_Click" />
    </Grid>
</Window>

MainWindow.xaml.cs:

using System.Windows;
namespace GridTest
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void btnRedraw_Click(object sender, RoutedEventArgs e)
        {
            theGrid.InvalidateMeasure();
        }
    }
}

MyCustomControl.cs:

using System;
using System.Windows;
using System.Windows.Controls;

namespace GridTest
{
    public class MyCustomControl : Control
    {
        static MyCustomControl()
        {
            DefaultStyleKeyProperty.OverrideMetadata(typeof(MyCustomControl), new FrameworkPropertyMetadata(typeof(MyCustomControl)));
        }

        public Visibility ShowButton
        {
            get { return (Visibility)GetValue(ShowButtonProperty); }
            set { SetValue(ShowButtonProperty, value); }
        }

        // Using a DependencyProperty as the backing store for ShowButton.  This enables animation, styling, binding, etc...
        public static readonly DependencyProperty ShowButtonProperty =
            DependencyProperty.Register("ShowButton", typeof(Visibility), typeof(MyCustomControl), new UIPropertyMetadata(Visibility.Visible));

        protected override Size MeasureOverride(Size constraint)
        {
            if (constraint.Width > 800)
            {
                ShowButton = Visibility.Collapsed;
            }
            else
            {
                ShowButton = Visibility.Visible;
            }

            double width = Math.Min(2000.0, constraint.Width);
            double height = Math.Min(50.0, constraint.Height);

            return new Size(width, height);
        }
    }
}

Generic.xaml:

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:GridTest">

    <Style TargetType="{x:Type local:MyCustomControl}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type local:MyCustomControl}">
                    <Border Background="LightCyan">
                        <TextBlock VerticalAlignment="Center" TextAlignment="Center">Custom Control</TextBlock>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

問題は次のように再現できます。

  • 右スクロール ボタンが見えるように、ウィンドウが小さいことを確認します。
  • ウィンドウを最大化します。=> 右スクロール ボタンが見えなくなるはずです。
  • ウィンドウを元のサイズに戻します。=> 右スクロール ボタンが再び表示されるはずです。(問題は、右スクロール ボタンが見えないままであることです。)

編集: 参考までに: VS2010+.NET4.0 と VS2013+.NET4.51 の両方で問題を再現できました。

4

2 に答える 2

0

以前にいくつかのカスタム を使用したことがありますが、メソッドPanelに渡された値が実際に使用されるサイズではないことを覚えているようです...代わりにそのコードをメソッドに移動して、何が起こるかを確認してください。MeasureOverrideArrangeOverride

于 2013-10-23T15:36:10.403 に答える