In the MVVM pattern for WPF, handling dialogs is one of the more complex operations. As your view model does not know anything about the view, dialog communication can...
  • May 23, 2022
  • 0 Comments
I am using DialogFragments for a number of things: choosing item from list, entering text. What is the best way to return a value (i.e. a string or an...
  • May 22, 2022
  • 0 Comments
I was wondering if someone could help me out. I am trying to create a custom AlertDialog. In order to do this, I added the following line of code...
  • May 20, 2022
  • 0 Comments
I’m trying to generate a custom dialog in Android. I create my Dialog like this: dialog = new Dialog(this); dialog.setContentView(R.layout.my_dialog); Everythings works fine except for the title of the...
  • May 19, 2022
  • 0 Comments
I want the user to select a directory where a file that I will then generate will be saved. I know that in WPF I should use the OpenFileDialog...
  • May 16, 2022
  • 0 Comments