Alba.JamlTestApp.MainWin._jaml_MainWinConverter_Class.Convert C# (CSharp) 메소드

Convert() 공개 메소드

public Convert ( object value, Type targetType, object param, CultureInfo culture ) : object
value object
targetType System.Type
param object
culture System.Globalization.CultureInfo
리턴 object
            public object Convert (object value, Type targetType, object param, CultureInfo culture)
            {
                if (ReferenceEquals(value, DependencyProperty.UnsetValue))
                    return DependencyProperty.UnsetValue;
                return (Visibility)value == Visibility.Hidden;
            }
MainWin._jaml_MainWinConverter_Class