Click here to Skip to main content
15,898,762 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends,
I am having a user defined control of interface type ISaveable (my user defined interface) as follows,
I have a button on the main form that is enabled if the control is Isavable.
May be I can make more sense in following code.
XML
<Button Name="btnSave" Content="Save" IsEnabled="{Binding   ElementName=expMaster, Path= (expMaster.GetType()==typeof(ISavable)) }" />


where expMaster is a user defined control instantiated as,
XML
<Employee:EmployeeMaster x:Name="expMaster"  />


where Employee master is inherited from interface ISavable.

please let me know how can I bind the isEnabled property of my button to the user defined object type
I don't want to create issavable property in my user defined control EmployeeMaster.

Best regards
Posted

1 solution

Instead of the path try and use a value converter (IValueConverter).
In the converter check the value.GetType() and return True or False as needed.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900