-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSignInWindow.xaml.cs
60 lines (54 loc) · 1.58 KB
/
SignInWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Coder.Desktop.App.ViewModels;
using CommunityToolkit.Mvvm.Input;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Controls.Primitives;
using Microsoft.UI.Xaml.Data;
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Navigation;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.Graphics;
namespace Coder.Desktop.App;
/// <summary>
/// The dialog window to allow the user to sign into their Coder server.
/// </summary>
public sealed partial class SignInWindow : Window
{
private const double WIDTH = 600.0;
private const double HEIGHT = 300.0;
private readonly SignInViewModel viewModel;
public SignInWindow(SignInViewModel vm)
{
viewModel = vm;
InitializeComponent();
var urlPage = new SignInURLPage(this, viewModel);
Content = urlPage;
ResizeWindow();
}
[RelayCommand]
public void NavigateToTokenPage()
{
var tokenPage = new SignInTokenPage(this, viewModel);
Content = tokenPage;
}
[RelayCommand]
public void NavigateToURLPage()
{
var urlPage = new SignInURLPage(this, viewModel);
Content = urlPage;
}
private void ResizeWindow()
{
var scale = DisplayScale.WindowScale(this);
var height = (int)(HEIGHT * scale);
var width = (int)(WIDTH * scale);
AppWindow.Resize(new SizeInt32(width, height));
}
}