You can use a value converter
This subtracts the parameter, but you can split it into the parameter.
<local:WidthConverter x:Key="widthConverter"/> <GridViewColumn Width="{Binding ElementName=lvCurDocFields, Path=ActualWidth, Converter={StaticResource widthConverter}, ConverterParameter=100}"> [ValueConversion(typeof(double), typeof(double))] public class WidthConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
source share