mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-06 23:43:07 +02:00
* Add overview article for new WPF (#178) * Remove previous WPF .NET 5 content * Overview article * New article: Create new WPF project (#183) * Basic index file * Finish article for new project. * acro * markdown fix * Fix build errors * fix code lang * fix code lang * Add differences article for WPF (#186) * Fix VS version for create app * Add differences article * Minor * fix overview styles code * Add code langs for overview * Port Window Overview WPF article (#1011) * Add Window overview article * Add TOC * Remove temp code * Fix headers * Port final Windows related articles (#1015) * Initial test commit * Add system dialogs * 75% complete * Add images * Fix linter * Add to toc * Add more howto * Fix code * Add get/set main window * Add missing code * Add to toc * Fix warnings * Fix warnings * missing code * Update see also * fix xref * Migrate wpf net core controls-styles articles (#1023) * Migrate control-styles * Fix links * Fix links * Port databinding article. (#1022) * Migrated databinding overview * update toc * Fix links/snippets * fix links * Move to correct folder * Port initial resources docs (#1026) * initial resources docs * Build errors * Update dotnet-desktop-guide/net/wpf/systems/xaml-resources-overview.md Co-authored-by: Genevieve Warren <[email protected]> * Apply suggestions from code review Co-authored-by: Genevieve Warren <[email protected]> * Feedback * Add app article * Add system article * Minor * meta * fix toc * Apply suggestions from code review Co-authored-by: Genevieve Warren <[email protected]> Co-authored-by: Genevieve Warren <[email protected]> * Add xaml article * reformat redirect * Redirects * WPF update XAML article (#1031) * convert snippets * minor edits * minor * Fix warnings * Fixes #1028 * Fixes #1028 * Apply suggestions from code review Co-authored-by: Genevieve Warren <[email protected]> * update redirects Co-authored-by: Genevieve Warren <[email protected]> * minor updates to link * Readd migration article * Warning fixes * Fix lint * Minor updates * Fix warnings for TOC/YML * last warnings Co-authored-by: Genevieve Warren <[email protected]>
102 lines
3.2 KiB
C#
102 lines
3.2 KiB
C#
using System.Windows;
|
|
|
|
namespace WindowsOverview
|
|
{
|
|
public partial class Window1 : Window
|
|
{
|
|
public Window1()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Button_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
//<YesNoCancel>
|
|
string messageBoxText = "Do you want to save changes?";
|
|
string caption = "Word Processor";
|
|
MessageBoxButton button = MessageBoxButton.YesNoCancel;
|
|
MessageBoxImage icon = MessageBoxImage.Warning;
|
|
MessageBoxResult result;
|
|
|
|
//<MessageBoxShow>
|
|
result = MessageBox.Show(messageBoxText, caption, button, icon);
|
|
//</YesNoCancel>
|
|
|
|
switch (result)
|
|
{
|
|
case MessageBoxResult.Cancel:
|
|
// User pressed Cancel
|
|
break;
|
|
case MessageBoxResult.Yes:
|
|
// User pressed Yes
|
|
break;
|
|
case MessageBoxResult.No:
|
|
// User pressed No
|
|
break;
|
|
}
|
|
//</MessageBoxShow>
|
|
}
|
|
|
|
private void Save_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
//<SaveFile>
|
|
// Configure save file dialog box
|
|
var dialog = new Microsoft.Win32.SaveFileDialog();
|
|
dialog.FileName = "Document"; // Default file name
|
|
dialog.DefaultExt = ".txt"; // Default file extension
|
|
dialog.Filter = "Text documents (.txt)|*.txt"; // Filter files by extension
|
|
|
|
// Show save file dialog box
|
|
bool? result = dialog.ShowDialog();
|
|
|
|
// Process save file dialog box results
|
|
if (result == true)
|
|
{
|
|
// Save document
|
|
string filename = dialog.FileName;
|
|
}
|
|
//</SaveFile>
|
|
}
|
|
|
|
private void Open_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
//<OpenFile>
|
|
// Configure open file dialog box
|
|
var dialog = new Microsoft.Win32.OpenFileDialog();
|
|
dialog.FileName = "Document"; // Default file name
|
|
dialog.DefaultExt = ".txt"; // Default file extension
|
|
dialog.Filter = "Text documents (.txt)|*.txt"; // Filter files by extension
|
|
|
|
// Show open file dialog box
|
|
bool? result = dialog.ShowDialog();
|
|
|
|
// Process open file dialog box results
|
|
if (result == true)
|
|
{
|
|
// Open document
|
|
string filename = dialog.FileName;
|
|
}
|
|
//</OpenFile>
|
|
}
|
|
|
|
private void Print_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
//<Print>
|
|
// Configure printer dialog box
|
|
var dialog = new System.Windows.Controls.PrintDialog();
|
|
dialog.PageRangeSelection = System.Windows.Controls.PageRangeSelection.AllPages;
|
|
dialog.UserPageRangeEnabled = true;
|
|
|
|
// Show save file dialog box
|
|
bool? result = dialog.ShowDialog();
|
|
|
|
// Process save file dialog box results
|
|
if (result == true)
|
|
{
|
|
// Document was printed
|
|
}
|
|
//</Print>
|
|
}
|
|
}
|
|
}
|