2

以下の XAML コードは、エキスパンダー ボタンをリストボックスとグリッドの間に配置する以外は問題なく動作します。ExpandDirection="Left" を設定すると、ボタンはリストボックスとグリッドの間にありますが、ボタンの方向インジケーターはユーザーを混乱させます。展開すると右を指し、展開しないと左を指します。ExpandDirection="Right" の場合と同じように方向指示器を動作させたいのですが、ExpandDirection="Left" の機能が必要です。

<DockPanel>
    <Expander ExpandDirection="Right">
        <ListBox>
            <ListBoxItem>Item One</ListBoxItem>
            <ListBoxItem>Item Two</ListBoxItem>
            <ListBoxItem>Item Three</ListBoxItem>
            <ListBoxItem>Item Four</ListBoxItem>
            <ListBoxItem>Item Five</ListBoxItem>
        </ListBox>
    </Expander>
        <Grid Background="AliceBlue">
          <TextBlock >
            Other Content
          </TextBlock>
        </Grid>
</DockPanel>
4

2 に答える 2

2

少し前に書いた DockedExpander クラスを使用することを好みます (コードは以下に含まれています)。このクラスは、ドッキングされている DockPanel のどの側にも自動的に設定されます。

たとえば、次のようになります。

<DockPanel>
  <edf:DockedExpander DockPanel.Dock="Left">
    <ListBox ...
  </edf:DockedExpander>

  <Grid ...

</DockPanel>

エキスパンダーはボタンを右に向けて左から開きます。ただし、次のように変更します。

  <edf:DockedExpander DockPanel.Dock="Right">

エキスパンダーの残りの部分が一致するように自動的に調整されます。「上」と「下」のドッキングも同様です。

私が DockedExpander を実装したのは、数百行の WPF の内部コードを自分のプロジェクトにコピーするという考えが嫌だったからです。また、私の DockedExpander コントロールは、WPF の内部スタイルを読み取るため、新しいテーマ スタイルに自動的に適応します。

DockedExpander クラスのコードは次のとおりです。

public class DockedExpander : Expander
{
  static DockedExpander()
  {
    _directions = new Dictionary<Dock, DirectionData>();
    _directions[Dock.Left]   = new DirectionData { Reverse = Dock.Right,  ExpandDirection = ExpandDirection.Right };
    _directions[Dock.Right]  = new DirectionData { Reverse = Dock.Left,   ExpandDirection = ExpandDirection.Left  };
    _directions[Dock.Top]    = new DirectionData { Reverse = Dock.Bottom, ExpandDirection = ExpandDirection.Down  };
    _directions[Dock.Bottom] = new DirectionData { Reverse = Dock.Top,    ExpandDirection = ExpandDirection.Up    };

    DockPanel.DockProperty.OverrideMetadata(typeof(DockedExpander), new FrameworkPropertyMetadata
    {
      PropertyChangedCallback = (obj, e) => ((DockedExpander)obj).UpdateExpandDirection()
    });

    ExpandDirectionProperty.OverrideMetadata(typeof(DockedExpander), new FrameworkPropertyMetadata
    {
      PropertyChangedCallback = (obj, e) => { throw new ArgumentException("Cannot set ExpandDirection because DockedExpander always computes its ExpandDirection from the DockPanel.Dock property"); }
    });
  }

  public override void OnApplyTemplate()
  {
    base.OnApplyTemplate();
    UpdateExpandDirection();
  }

  private void UpdateExpandDirection()
  {
    // Can't use GetTemplateChild because non-PART_ names are not guaranteed to stay the same
    var dockPanel = FindTwoElementDockPanelUnder(this);
    var headerSite = dockPanel.Children[0];
    var expandSite = dockPanel.Children[1];

    // Compute the docking
    Dock myDock = DockPanel.GetDock(this);
    DirectionData myDockData = _directions[myDock];

    DockPanel.SetDock(headerSite, myDockData.Reverse);
    DockPanel.SetDock(expandSite, myDock);
    headerSite.SetValue(FrameworkElement.StyleProperty, myDockData.HeaderSiteStyle);
  }

  private static Dictionary<Dock, DirectionData> _directions;
  private class DirectionData
  {
    public Dock Reverse;
    public ExpandDirection ExpandDirection;
    public Style HeaderSiteStyle
    {
      get
      {
        if(_headerSiteStyle==null)
        {
          var expander = new Expander { ExpandDirection = this.ExpandDirection };
          expander.BeginInit();
          expander.EndInit();
          expander.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
          var headerSite = FindTwoElementDockPanelUnder(expander).Children[0];
          _headerSiteStyle = ((FrameworkElement)headerSite).Style;
        }
        return _headerSiteStyle;
      }
    }
    private Style _headerSiteStyle;
  }

  private static DockPanel FindTwoElementDockPanelUnder(DependencyObject visual)
  {
    while(true)
      switch(VisualTreeHelper.GetChildrenCount(visual))
      {
        case 1: visual = VisualTreeHelper.GetChild(visual, 0); continue;
        case 2: return visual as DockPanel;
        default: return null;
      }
  }
}

いつものように、カスタム コントロールを使用できるようにするには、XAML で名前空間宣言 (xmlns) が必要です。

于 2009-11-09T23:46:38.243 に答える
2

Expression Blend を使用し、Expander の現在のテンプレートのコピーを編集し、テンプレートの XAML に移動し、"ExpanderLeftHeaderStyle" を "ExpanderRightHeaderStyle" に、"ExpanderRightHeaderStyle" を "ExpanderLeftHeaderStyle" に名前変更します。

于 2009-11-09T23:26:29.083 に答える