Ejemplo n.º 1
0
        private async void ImagesSizesListView_ItemClick(object sender, ItemClickEventArgs e)
        {
            Snippet S = (Snippet)e.ClickedItem;

            NameBox.Text   = S.Title;
            FormatBox.Text = S.Format;
            await SnippetDialog.ShowAsync();
        }
Ejemplo n.º 2
0
 private async void AddSizeButton_Click(object sender, RoutedEventArgs e)
 {
     NameBox.Text   = "";
     FormatBox.Text = "";
     await SnippetDialog.ShowAsync();
 }