2022-07-21 16:53:10 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
2022-10-30 16:49:56 +08:00
|
|
|
|
using COSXML;
|
|
|
|
|
using COSXML.Auth;
|
|
|
|
|
using COSXML.Model.Object;
|
|
|
|
|
using COSXML.Model.Bucket;
|
|
|
|
|
using COSXML.CosException;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
using System.Text.Json.Nodes;
|
|
|
|
|
using System.Diagnostics;
|
2022-11-12 23:36:08 +08:00
|
|
|
|
using starter.viewmodel.settings;
|
|
|
|
|
using System.Windows.Forms;
|
2022-07-21 16:53:10 +08:00
|
|
|
|
|
|
|
|
|
namespace Installer
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for MainWindow.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2022-10-30 16:49:56 +08:00
|
|
|
|
|
2022-11-12 23:36:08 +08:00
|
|
|
|
this.DataContext = new SettingsViewModel();
|
2022-10-30 16:49:56 +08:00
|
|
|
|
}
|
2023-03-26 02:06:32 +08:00
|
|
|
|
|
|
|
|
|
private void BackBtn_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2022-10-30 16:49:56 +08:00
|
|
|
|
}
|
2022-11-12 23:36:08 +08:00
|
|
|
|
}
|