0

我有下面的代码有效。它正确地将最小绘图宽度保持在 20 像素宽。但是,我需要设置一个 MinHeight 值。我希望我的 MinHeight 值保持当前的高度/宽度比率。我怎么做?

<Grid MinWidth="{Binding RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type c:IWorldAndScreen}}, Path=MetersPerPixel, Converter={StaticResource multiplier}, ConverterParameter=20}">
    <Grid.Width>
        <MultiBinding Converter="{StaticResource summation}">
            <Binding Path="Front" />
            <Binding Path="Back" />
        </MultiBinding>
    </Grid.Width>
    <Grid.Height>
        <MultiBinding Converter="{StaticResource summation}">
            <Binding Path="Left" />
            <Binding Path="Right" />
        </MultiBinding>
    </Grid.Height>
...
</Grid>
4

1 回答 1

0

这是我想出的:

<Grid.MinHeight>
    <!-- height/width * actualWidth -->
    <MultiBinding Converter="{StaticResource divMulAdd}">
        <Binding RelativeSource="{RelativeSource Self}" Path="Height"/>
        <Binding RelativeSource="{RelativeSource Self}" Path="Width"/>
        <Binding RelativeSource="{RelativeSource Self}" Path="ActualWidth"/>
    </MultiBinding>
</Grid.MinHeight>

结合这个转换器:

public class DivMulAddMultiConverter : IMultiValueConverter
    {
        #region Implementation of IMultiValueConverter

        public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
        {
            if (targetType != typeof(double)) throw new ArgumentException("Expected a target type of Double", "targetType");
            if (values == null || values.Length <= 0) return 0.0;

            var cur = System.Convert.ToDouble(values[0]);
            if(values.Length > 1)
                cur /= System.Convert.ToDouble(values[1]);
            if(values.Length > 2)
                cur *= System.Convert.ToDouble(values[2]);
            for(int i = 3; i < values.Length; i++)
                cur += System.Convert.ToDouble(values[i]);

            return cur;
        }

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

        #endregion
    }
于 2013-02-25T22:20:12.160 回答