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.0 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. }
  41. }