You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

MainWindow.xaml.cs 1.1 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. using COSXML;
  16. using COSXML.Auth;
  17. using COSXML.Model.Object;
  18. using COSXML.Model.Bucket;
  19. using COSXML.CosException;
  20. using System.IO;
  21. using Newtonsoft.Json;
  22. using System.Runtime.InteropServices;
  23. using System.Security.Cryptography;
  24. using System.Text.Json.Nodes;
  25. using System.Diagnostics;
  26. using starter.viewmodel.settings;
  27. using System.Windows.Forms;
  28. namespace Installer
  29. {
  30. /// <summary>
  31. /// Interaction logic for MainWindow.xaml
  32. /// </summary>
  33. public partial class MainWindow : Window
  34. {
  35. public MainWindow()
  36. {
  37. InitializeComponent();
  38. this.DataContext = new SettingsViewModel();
  39. }
  40. private void BackBtn_Click(object sender, RoutedEventArgs e)
  41. {
  42. }
  43. }
  44. }