MVVMCross ダイアログ セクションの Visible プロパティをバインドしようとしています。
var refillSection = new Section() {
new StringElement("Refill").Bind(this, "SelectedCommand OpenExternal")
}.Bind(this, "Visible IsExternal,Converter=Visibility");
root.Add(refillSection);
また、要素の可視性を直接バインドしようとしましたが、どちらも機能しません。
var refillSection = new Section() {
new StringElement("Refill").Bind(this, "SelectedCommand OpenExternal;Visible IsExternal,Converter=Visibility")
};
root.Add(refillSection);
私は何か間違ったことをしていますか?Visibility プラグインをインストールしました。