XAMLビューのコードビハインドファイルでAppBarButtonを作成しています。 現在、私は以下のようにXAMLでAppBarButtonを定義している:xの値をプログラムで設定します。
<AppBarButton x:Name="SelectVisitAppBarButton" x:Uid="AppBar_TransferVisit" Margin="0,0,12,0" Icon="Bullets" Style="{StaticResource TransferAppBarButtonStyle}" IsEnabled="{Binding ScheduleViewVm.IsVisitSelectionEnable}" Click="SelectVisit_Click" />
私はC#のコードには、このXAMLを変換したいです。以下は私が今まで持っているコードです。それと同等のC#コードにUID = "AppBar_TransferVisit":
はAppBarButton SelectVisitAppBarButton = new AppBarButton();
SelectVisitAppBarButton.Margin = new Thickness(0, 0, 12, 0);
SymbolIcon bulletSymbol = new SymbolIcon();
bulletSymbol.Symbol = Symbol.Bullets;
SelectVisitAppBarButton.Icon = bulletSymbol;
SelectVisitAppBarButton.Style = App.Current.Resources["TransferAppBarButtonStyle"] as Style;
SelectVisitAppBarButton.Click += SelectVisit_Click;
Binding b = new Binding();
b.Source = _viewModel.ScheduleViewVm.IsVisitSelectionEnable;
SelectVisitAppBarButton.SetBinding(Control.IsEnabledProperty, b);
Appbar.Children.Add(SelectVisitAppBarButton);
私が探しています唯一の事は、xを変換することです。これに関する助言は高く評価されます。
ありがとう、 Naresh Ravlani。
私はこれを見つけることができる任意のドキュメントリンクを共有できる場合に役立ちます。 –