Пример #1
0
        public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            System.Windows.GridLength columnWidth           = values[0] is System.Windows.GridLength ? (System.Windows.GridLength)values[0] : new System.Windows.GridLength(0);
            System.Windows.Controls.ScrollBarVisibility vsv = (System.Windows.Controls.ScrollBarVisibility)values[1];

            double width = columnWidth.Value;

            if (vsv == System.Windows.Controls.ScrollBarVisibility.Hidden)
            {
                return(new System.Windows.GridLength(width));
            }
            else
            {
                return(new System.Windows.GridLength(width - SystemParameters.VerticalScrollBarWidth - 1));
            }
        }
        public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            System.Windows.GridLength columnWidth = values[0] is System.Windows.GridLength ? (System.Windows.GridLength)values[0] : new System.Windows.GridLength(0);

            double minWidth = 0.0d;

            if (Double.TryParse(values[1].ToString(), out minWidth) == false)
            {
                minWidth = 30.0d;
            }
            System.Windows.Controls.ScrollBarVisibility vsv = (System.Windows.Controls.ScrollBarVisibility)values[2];

            double width = columnWidth.Value > 1 ? columnWidth.Value : minWidth;

            if (vsv == System.Windows.Controls.ScrollBarVisibility.Hidden)
            {
                return(new System.Windows.GridLength(width));
            }
            else
            {
                return(new System.Windows.GridLength(width - SystemParameters.VerticalScrollBarWidth - 1));
            }
        }