c# - WPF Change property from codebehind -
i have property beingness set follows:
<listbox grid.row="1" name="lstdrop" background="transparent" guicommon:listboxselector.enabled="true"
could tell me if possible alter guicommon:listboxselector.enabled="true"
property false in codebehind?
listboxselector.enabled
seems attached property.
you should able set calling
listboxselector.setenabled(lstdrop, true);
c# wpf
No comments:
Post a Comment