WPF 将一个 属性 的值设置为另一个 属性 的值的比率

WPF Set the value of a property to a ratio of the value of another property

我想知道在 XAML 中我是否可以在不触及视图模型的情况下做类似 this or this 的事情,除了使用另一个 属性.

的比率

我有一个按钮控件,里面有 2 个椭圆,我希望其中一个椭圆的边距根据另一个椭圆的高度而变化。

所以是这样的:

<Ellipse Margin=.2*"{Binding ElementName=OtherEllipse, Path=Height}"/>

可以,你需要写自定义IValueConverter。 http://www.codeproject.com/Tips/868163/IValueConverter-Example-and-Usage-in-WPF

如果需要传递参数:Passing values to IValueConverter

MainWindow.xaml

<Window x:Class="MultiBindingConverterDemo.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:MultiBindingConverterDemo"
    mc:Ignorable="d"
    Title="MainWindow" Height="600" Width="800">
<StackPanel>
    <StackPanel.Resources>
        <local:MultiplyValueConverter x:Key="MultiplyValueConverter"/>
    </StackPanel.Resources>
    <Ellipse x:Name="OtherEllipse" Width="100" Height="50" Fill="Red"/>
    <Ellipse Width="50" Height="50" Fill="Blue" 
             Margin="{Binding Path=Height, 
                              ElementName=OtherEllipse, 
                              Converter={StaticResource MultiplyValueConverter}, 
                              ConverterParameter=0.2}">
    </Ellipse>
</StackPanel>

MainWindow.xaml.cs

using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;

namespace MultiBindingConverterDemo
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }
    }

    public class MultiplyValueConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            double height = (double)value;
            double multiplier = double.Parse((string)parameter);
            return new Thickness(height * multiplier);
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}