1

我想增加或减少主窗口包含的窗口、树视图、功能区菜单等控件的字体大小。

我有一个字体大小滑块创建方法,我想通过使用 visualtree 助手来访问所有 Control 和 TextBlock,并根据滑块值增加或减少它们的字体大小。

方法如下;

 private StackPanel CreateFontSizeSlider()
 {
            StackPanel fontSizePanel = new StackPanel();
            fontSizePanel.Orientation = Orientation.Horizontal;
            Slider fontSizeSlider = new Slider();
            fontSizeSlider.Minimum = -3;
            fontSizeSlider.Maximum = 5;
            fontSizeSlider.Value = 0;
            fontSizeSlider.Orientation = Orientation.Horizontal;
            fontSizeSlider.TickPlacement = System.Windows.Controls.Primitives.TickPlacement.TopLeft;
            fontSizeSlider.IsSnapToTickEnabled = true;
            fontSizeSlider.ValueChanged += new RoutedPropertyChangedEventHandler<double>(fontSizeSlider_ValueChanged);
            fontSizeSlider.Width = 150;

            fontSizePanel.Children.Add(fontSizeSlider);
            return fontSizePanel;
        }


 public static void ChangeControlsFontSize(DependencyObject dependencyObject, double value)
 {
            foreach (DependencyObject childItem in GetChildren(dependencyObject))
            {
                if (childItem is Control)
                {
                    Control control = childItem as Control;
                    control.FontSize = control.FontSize + value;
                }
                else if (childItem is TextBlock)
                {
                    ((TextBlock)childItem).FontSize = ((TextBlock)childItem).FontSize + value;
                }
                ChangeControlsFontSize(childItem, value);
            }
        }

        private static IEnumerable<DependencyObject> GetChildren(DependencyObject reference)
        {

            int childCount = VisualTreeHelper.GetChildrenCount(reference);
            for (int i = 0; i < childCount; i++)
            {
                yield return VisualTreeHelper.GetChild(reference, i);
            }
        } 


  private void fontSizeSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
        {
           ChangeControlsFontSize(this, e.NewValue - e.OldValue);
        }

有一些问题;

首先,我无法通过走可视化树来访问所有控件。例如,我无法访问关闭的功能区菜单项。所以我不能改变他们的字体。

其次,一些控件包含另一个控件,因此我将控件字体大小增加或减小了两次。

这些问题有什么解决方案还是有其他方法可以做到这一点?请问你能帮帮我吗 ?

4

1 回答 1

2

你工作太辛苦了。:-D

创建这样的样式:

<Style TargetType="ListBox">
    <Setter Property="FontFamily" Value="Tahoma"/>
    <Setter Property="FontSize">
        <Setter.Value>
            <Binding Source="{x:Static Application.Current}" Path="fontSize"/>
        </Setter.Value>
    </Setter>
</Style>

在您的应用程序上创建一个名为 fontSize 的属性。

制作这样的滑块:

    <Slider Name="fontSize" Minimum="10" Maximum="22" IsSnapToTickEnabled="True"  TickPlacement="TopLeft"
            Value="{Binding Source={x:Static Application.Current}, Path=fontSize, Mode=TwoWay}"/>

现在,任何具有该样式的控件都可以很好地调整大小 - 并且不需要任何代码!

于 2010-06-23T19:24:23.380 回答