Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AddTextNotePopup.cs
2{
6 public partial class AddTextNotePopup
7 {
8 private readonly AddTextNoteViewModel viewModel;
9
15 {
16 this.InitializeComponent();
17 this.BindingContext = this.viewModel = ViewModel;
18 }
19
21 protected override void OnAppearing()
22 {
23 this.NoteEntry.Focus();
24 base.OnAppearing();
25 }
26
28 protected override void OnDisappearing()
29 {
30 this.viewModel.Close();
31 base.OnDisappearing();
32 }
33 }
34}
Prompts the user for text to add as a note for a token.
AddTextNotePopup(AddTextNoteViewModel ViewModel)
Prompts the user for text to add as a note for a token.
View model for popup page prompting the user for a text note to be added.