Posts

Showing posts from September, 2021

WPF DialogHost

WPF DialogHost   Works with DialogHost calls such as: DialogHost.Show(new CurrencyView() { DataContext = _sessionVm }, "RootDialog"); These Accept and Close: <Button Style="{StaticResource AcceptButtonStyle}" Margin="4" HorizontalAlignment="Left" Width="100">     <Button.Command>         <utilities:CompositeCommand>             <utilities:CommandBindingPassThru CommandIdentifier="closeDialog"                                               IsAlwaysEnabled="True"                               ...