fix some issues and optimized login
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,10 +1,10 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// Dieser Code wurde von einem Tool generiert.
|
// This code was generated by a tool.
|
||||||
// Laufzeitversion:4.0.30319.42000
|
// Runtime Version:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// der Code erneut generiert wird.
|
// the code is regenerated.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -19,5 +19,5 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Server Dashboard Socket")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Server Dashboard Socket")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,76 @@
|
|||||||
|
<UserControl x:Class="Server_Dashboard.Controls.LoadingIndicator"
|
||||||
|
x:Name="control"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:Server_Dashboard.Controls"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
>
|
||||||
|
<Grid DataContext="{Binding RelativeSource={RelativeSource Self}}">
|
||||||
|
<Path
|
||||||
|
Stroke="Transparent"
|
||||||
|
StrokeThickness=".5"
|
||||||
|
RenderTransformOrigin=".5,.5"
|
||||||
|
Width="60"
|
||||||
|
Height="60"
|
||||||
|
>
|
||||||
|
<Path.Effect>
|
||||||
|
<DropShadowEffect BlurRadius="5" ShadowDepth="0" Opacity="1" Color="#B388FF"/>
|
||||||
|
</Path.Effect>
|
||||||
|
<Path.Data>
|
||||||
|
<CombinedGeometry
|
||||||
|
GeometryCombineMode="Xor"
|
||||||
|
>
|
||||||
|
<CombinedGeometry.Geometry1>
|
||||||
|
<EllipseGeometry
|
||||||
|
RadiusX="30"
|
||||||
|
RadiusY="30"
|
||||||
|
Center="30,30"
|
||||||
|
/>
|
||||||
|
</CombinedGeometry.Geometry1>
|
||||||
|
<CombinedGeometry.Geometry2>
|
||||||
|
<EllipseGeometry
|
||||||
|
RadiusX="24"
|
||||||
|
RadiusY="24"
|
||||||
|
Center="30,30"
|
||||||
|
/>
|
||||||
|
</CombinedGeometry.Geometry2>
|
||||||
|
</CombinedGeometry>
|
||||||
|
</Path.Data>
|
||||||
|
<Path.Fill>
|
||||||
|
<LinearGradientBrush
|
||||||
|
StartPoint="0,0"
|
||||||
|
EndPoint="1,1"
|
||||||
|
>
|
||||||
|
<GradientStop
|
||||||
|
Color="#B388FF" Offset="0"
|
||||||
|
/>
|
||||||
|
<GradientStop
|
||||||
|
Color="#A7FFEB" Offset="1"
|
||||||
|
/>
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</Path.Fill>
|
||||||
|
<Path.RenderTransform>
|
||||||
|
<RotateTransform/>
|
||||||
|
<!--This is necessary for the animation not to stop-->
|
||||||
|
</Path.RenderTransform>
|
||||||
|
<Path.Triggers>
|
||||||
|
<EventTrigger
|
||||||
|
RoutedEvent="Loaded"
|
||||||
|
>
|
||||||
|
<BeginStoryboard>
|
||||||
|
<Storyboard>
|
||||||
|
<DoubleAnimation
|
||||||
|
Storyboard.TargetProperty="(Rectangle.RenderTransform).(RotateTransform.Angle)"
|
||||||
|
To="360"
|
||||||
|
Duration="0:0:.8"
|
||||||
|
RepeatBehavior="Forever"
|
||||||
|
/>
|
||||||
|
</Storyboard>
|
||||||
|
</BeginStoryboard>
|
||||||
|
</EventTrigger>
|
||||||
|
</Path.Triggers>
|
||||||
|
</Path>
|
||||||
|
</Grid>
|
||||||
|
</UserControl>
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
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;
|
||||||
|
|
||||||
|
namespace Server_Dashboard.Controls {
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for LoadingIndicator.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class LoadingIndicator : UserControl {
|
||||||
|
public LoadingIndicator() {
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,9 +14,10 @@ namespace Server_Dashboard {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool CheckLogin(string uname, string passwd) {
|
public static int CheckLogin(string uname, string passwd) {
|
||||||
string valid = "False";
|
using (SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ServerDashboardDB"].ConnectionString)) {
|
||||||
ConnectToDatabase(con => {
|
try {
|
||||||
|
con.Open();
|
||||||
string query = "EXEC ValidateUserLogin @Username = @uname, @Password = @passwd, @Valid = @valid OUTPUT";
|
string query = "EXEC ValidateUserLogin @Username = @uname, @Password = @passwd, @Valid = @valid OUTPUT";
|
||||||
using (SqlCommand com = new SqlCommand(query, con)) {
|
using (SqlCommand com = new SqlCommand(query, con)) {
|
||||||
com.Parameters.AddWithValue("@uname", uname);
|
com.Parameters.AddWithValue("@uname", uname);
|
||||||
@@ -24,10 +25,14 @@ namespace Server_Dashboard {
|
|||||||
com.Parameters.Add("@valid", SqlDbType.NVarChar, 250);
|
com.Parameters.Add("@valid", SqlDbType.NVarChar, 250);
|
||||||
com.Parameters["@valid"].Direction = ParameterDirection.Output;
|
com.Parameters["@valid"].Direction = ParameterDirection.Output;
|
||||||
com.ExecuteNonQuery();
|
com.ExecuteNonQuery();
|
||||||
valid = Convert.ToString(com.Parameters["@Valid"].Value);
|
return Convert.ToInt32(com.Parameters["@Valid"].Value);
|
||||||
|
}
|
||||||
|
} catch (SqlException ex) {
|
||||||
|
return ex.Number;
|
||||||
|
} finally {
|
||||||
|
con.Close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
|
||||||
return Convert.ToBoolean(valid);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool CheckCookie(string cookie, string username) {
|
public static bool CheckCookie(string cookie, string username) {
|
||||||
@@ -89,7 +94,9 @@ namespace Server_Dashboard {
|
|||||||
con.Open();
|
con.Open();
|
||||||
callback(con);
|
callback(con);
|
||||||
con.Close();
|
con.Close();
|
||||||
} catch { return null; }
|
} catch (SqlException ex) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
|
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
|
||||||
xmlns:local="clr-namespace:Server_Dashboard"
|
xmlns:local="clr-namespace:Server_Dashboard"
|
||||||
|
xmlns:loading="clr-namespace:Server_Dashboard.Controls"
|
||||||
x:Name="Login"
|
x:Name="Login"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
Title="Server Dashboard" Height="700" Width="500" WindowStyle="None" Background="Transparent" ResizeMode="CanResize" local:CloseProperty.Value="True">
|
Title="Server Dashboard" Height="700" Width="500" WindowStyle="None" Background="Transparent" ResizeMode="CanResize" local:CloseProperty.Value="True">
|
||||||
@@ -21,13 +22,14 @@
|
|||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="30"/>
|
<RowDefinition Height="30"/>
|
||||||
<RowDefinition Height="*"/>
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="70"/>
|
||||||
<RowDefinition Height="80"/>
|
<RowDefinition Height="80"/>
|
||||||
<RowDefinition Height="80"/>
|
<RowDefinition Height="80"/>
|
||||||
<RowDefinition Height="80"/>
|
<RowDefinition Height="80"/>
|
||||||
<RowDefinition Height="30"/>
|
<RowDefinition Height="30"/>
|
||||||
<RowDefinition Height="30"/>
|
<RowDefinition Height="30"/>
|
||||||
<RowDefinition Height="80"/>
|
<RowDefinition Height="80"/>
|
||||||
<RowDefinition Height=".2*"/>
|
<RowDefinition Height=".3*"/>
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<i:Interaction.Triggers>
|
<i:Interaction.Triggers>
|
||||||
<i:EventTrigger EventName="MouseDown">
|
<i:EventTrigger EventName="MouseDown">
|
||||||
@@ -63,8 +65,9 @@
|
|||||||
Background="{StaticResource BackgroundSurface_00dp}"
|
Background="{StaticResource BackgroundSurface_00dp}"
|
||||||
Grid.Row="1"
|
Grid.Row="1"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Bottom"
|
||||||
Grid.ColumnSpan="2"
|
Grid.ColumnSpan="2"
|
||||||
|
Margin="0 0 0 10"
|
||||||
>
|
>
|
||||||
<StackPanel
|
<StackPanel
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
@@ -90,6 +93,9 @@
|
|||||||
</TextBlock>
|
</TextBlock>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Border>
|
</Border>
|
||||||
|
<UserControl Grid.Row="2" Visibility="{Binding Loading}">
|
||||||
|
<loading:LoadingIndicator/>
|
||||||
|
</UserControl>
|
||||||
<!--#endregion-->
|
<!--#endregion-->
|
||||||
|
|
||||||
<!--#region Username form-->
|
<!--#region Username form-->
|
||||||
@@ -99,7 +105,7 @@
|
|||||||
Width="350"
|
Width="350"
|
||||||
Height="60"
|
Height="60"
|
||||||
Background="{StaticResource BackgroundSurface_01dp}"
|
Background="{StaticResource BackgroundSurface_01dp}"
|
||||||
Grid.Row="2"
|
Grid.Row="3"
|
||||||
Grid.ColumnSpan="2"
|
Grid.ColumnSpan="2"
|
||||||
>
|
>
|
||||||
<Border.Effect>
|
<Border.Effect>
|
||||||
@@ -145,7 +151,7 @@
|
|||||||
<Border
|
<Border
|
||||||
Margin="0 10 0 10"
|
Margin="0 10 0 10"
|
||||||
Background="{StaticResource BackgroundSurface_01dp}"
|
Background="{StaticResource BackgroundSurface_01dp}"
|
||||||
Grid.Row="3"
|
Grid.Row="4"
|
||||||
Grid.ColumnSpan="2"
|
Grid.ColumnSpan="2"
|
||||||
Width="350"
|
Width="350"
|
||||||
CornerRadius="4"
|
CornerRadius="4"
|
||||||
@@ -204,7 +210,7 @@
|
|||||||
Width="350"
|
Width="350"
|
||||||
Command="{Binding LoginCommand}"
|
Command="{Binding LoginCommand}"
|
||||||
CommandParameter="{Binding ElementName=Login}"
|
CommandParameter="{Binding ElementName=Login}"
|
||||||
Grid.Row="4"
|
Grid.Row="5"
|
||||||
Content="LOGIN"
|
Content="LOGIN"
|
||||||
Grid.ColumnSpan="2"
|
Grid.ColumnSpan="2"
|
||||||
/>
|
/>
|
||||||
@@ -215,7 +221,7 @@
|
|||||||
Text="{Binding ErrorText}"
|
Text="{Binding ErrorText}"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
Grid.Row="5"
|
Grid.Row="6"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Foreground="{StaticResource ErrorRed}"
|
Foreground="{StaticResource ErrorRed}"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
@@ -223,7 +229,7 @@
|
|||||||
<!--#endregion-->
|
<!--#endregion-->
|
||||||
|
|
||||||
<!--#region Remember me and Password forgotten link-->
|
<!--#region Remember me and Password forgotten link-->
|
||||||
<Grid Grid.Row="6">
|
<Grid Grid.Row="7">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="Auto"/>
|
<ColumnDefinition Width="Auto"/>
|
||||||
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="*"/>
|
||||||
@@ -271,7 +277,7 @@
|
|||||||
<!--#endregion-->
|
<!--#endregion-->
|
||||||
|
|
||||||
<!--#region Link to register form-->
|
<!--#region Link to register form-->
|
||||||
<Grid Grid.Row="7">
|
<Grid Grid.Row="8">
|
||||||
<StackPanel
|
<StackPanel
|
||||||
Orientation="Horizontal"
|
Orientation="Horizontal"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
|
|||||||
@@ -12,6 +12,9 @@
|
|||||||
<Compile Update="Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml.cs">
|
<Compile Update="Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml.cs">
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Update="Controls\LoadingIndicator\LoadingIndicator.xaml.cs">
|
||||||
|
<SubType>Code</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Update="Controls\ServerModules\ServerModule.xaml.cs">
|
<Compile Update="Controls\ServerModules\ServerModule.xaml.cs">
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -32,6 +35,9 @@
|
|||||||
<Page Update="Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml">
|
<Page Update="Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml">
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
|
<Page Update="Controls\LoadingIndicator\LoadingIndicator.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
<Page Update="Controls\ServerModules\ServerModule.xaml">
|
<Page Update="Controls\ServerModules\ServerModule.xaml">
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
using Server_Dashboard.Properties;
|
using Server_Dashboard.Properties;
|
||||||
using System;
|
using System;
|
||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Server_Dashboard {
|
namespace Server_Dashboard {
|
||||||
class LoginViewModel : BaseViewModel, IWindowHelper {
|
class LoginViewModel : BaseViewModel, IWindowHelper {
|
||||||
@@ -39,10 +40,22 @@ namespace Server_Dashboard {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private string loading;
|
||||||
|
|
||||||
|
public string Loading {
|
||||||
|
get { return loading; }
|
||||||
|
set {
|
||||||
|
if (value != loading)
|
||||||
|
loading = value;
|
||||||
|
OnPropertyChanged(nameof(loading));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public Action Close { get ; set; }
|
public Action Close { get ; set; }
|
||||||
|
|
||||||
public LoginViewModel() {
|
public LoginViewModel() {
|
||||||
LoginCommand = new RelayCommand(Login);
|
Loading = "Hidden";
|
||||||
|
LoginCommand = new RelayCommand(LoginAsync);
|
||||||
if (!String.IsNullOrEmpty(Settings.Default.Username)) {
|
if (!String.IsNullOrEmpty(Settings.Default.Username)) {
|
||||||
Username = Settings.Default.Username;
|
Username = Settings.Default.Username;
|
||||||
RememberUser = Settings.Default.RememberMe;
|
RememberUser = Settings.Default.RememberMe;
|
||||||
@@ -51,9 +64,16 @@ namespace Server_Dashboard {
|
|||||||
|
|
||||||
public ICommand LoginCommand { get; set; }
|
public ICommand LoginCommand { get; set; }
|
||||||
|
|
||||||
private void Login(object parameter) {
|
private async void LoginAsync(object parameter) {
|
||||||
if (!String.IsNullOrWhiteSpace(Username) && !String.IsNullOrWhiteSpace((parameter as IHavePassword).SecurePassword.Unsecure())) {
|
if (!String.IsNullOrWhiteSpace(Username) && !String.IsNullOrWhiteSpace((parameter as IHavePassword).SecurePassword.Unsecure())) {
|
||||||
if (DatabaseHandler.CheckLogin(Username, (parameter as IHavePassword).SecurePassword.Unsecure())) {
|
Loading = "Visible";
|
||||||
|
int result = await Task.Run(() => DatabaseHandler.CheckLogin(Username, (parameter as IHavePassword).SecurePassword.Unsecure()));
|
||||||
|
Loading = "Hidden";
|
||||||
|
switch (result) {
|
||||||
|
case 0:
|
||||||
|
ErrorText = "Username or password is wrong.";
|
||||||
|
return;
|
||||||
|
case 1:
|
||||||
if (RememberUser && !String.IsNullOrEmpty(Settings.Default.Cookies)) {
|
if (RememberUser && !String.IsNullOrEmpty(Settings.Default.Cookies)) {
|
||||||
DatabaseHandler.CheckCookie(Settings.Default.Cookies, Username);
|
DatabaseHandler.CheckCookie(Settings.Default.Cookies, Username);
|
||||||
}
|
}
|
||||||
@@ -75,8 +95,12 @@ namespace Server_Dashboard {
|
|||||||
DashboardWindow window = new DashboardWindow();
|
DashboardWindow window = new DashboardWindow();
|
||||||
window.Show();
|
window.Show();
|
||||||
Close?.Invoke();
|
Close?.Invoke();
|
||||||
} else {
|
return;
|
||||||
ErrorText = "Username or password is wrong.";
|
case 2:
|
||||||
|
ErrorText = "Server unreachable, connection timeout.";
|
||||||
|
return;
|
||||||
|
default:
|
||||||
|
ErrorText = "An unknown error has occured";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if (String.IsNullOrWhiteSpace(Username) && String.IsNullOrWhiteSpace((parameter as IHavePassword).SecurePassword.Unsecure())) {
|
} else if (String.IsNullOrWhiteSpace(Username) && String.IsNullOrWhiteSpace((parameter as IHavePassword).SecurePassword.Unsecure())) {
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,76 @@
|
|||||||
|
#pragma checksum "..\..\..\..\Controls\LoadingIndicator.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "94C2774B2D565276CA63842D1825DA963E3E8797"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using Server_Dashboard.Controls;
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Server_Dashboard.Controls {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LoadingIndicator
|
||||||
|
/// </summary>
|
||||||
|
public partial class LoadingIndicator : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Server Dashboard;V1.0.0.0;component/controls/loadingindicator.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\..\Controls\LoadingIndicator.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Binary file not shown.
@@ -0,0 +1,90 @@
|
|||||||
|
#pragma checksum "..\..\..\..\..\Controls\LoadingIndicator\LoadingIndicator.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B712BFC0DDE46A0CEA17B00250D69DC46AB75992"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using Server_Dashboard.Controls;
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Server_Dashboard.Controls {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LoadingIndicator
|
||||||
|
/// </summary>
|
||||||
|
public partial class LoadingIndicator : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
|
#line 2 "..\..\..\..\..\Controls\LoadingIndicator\LoadingIndicator.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal Server_Dashboard.Controls.LoadingIndicator control;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/controls/loadingindicator/loadingindicator.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\..\..\Controls\LoadingIndicator\LoadingIndicator.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
switch (connectionId)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
this.control = ((Server_Dashboard.Controls.LoadingIndicator)(target));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
#pragma checksum "..\..\..\..\..\Controls\LoadingIndicator\LoadingIndicator.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B712BFC0DDE46A0CEA17B00250D69DC46AB75992"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using Server_Dashboard.Controls;
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Server_Dashboard.Controls {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LoadingIndicator
|
||||||
|
/// </summary>
|
||||||
|
public partial class LoadingIndicator : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
|
#line 2 "..\..\..\..\..\Controls\LoadingIndicator\LoadingIndicator.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal Server_Dashboard.Controls.LoadingIndicator control;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/controls/loadingindicator/loadingindicator.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\..\..\Controls\LoadingIndicator\LoadingIndicator.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
switch (connectionId)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
this.control = ((Server_Dashboard.Controls.LoadingIndicator)(target));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Binary file not shown.
@@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "..\..\..\LoginWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DC5E405274889CDB3CDAE3C78BC0E5CCC83DDAB2"
|
#pragma checksum "..\..\..\LoginWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BC333A5F7B9E8D68E824FFFBFE4539E4AA85365F"
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// This code was generated by a tool.
|
||||||
@@ -15,6 +15,7 @@ using Microsoft.Xaml.Behaviors.Input;
|
|||||||
using Microsoft.Xaml.Behaviors.Layout;
|
using Microsoft.Xaml.Behaviors.Layout;
|
||||||
using Microsoft.Xaml.Behaviors.Media;
|
using Microsoft.Xaml.Behaviors.Media;
|
||||||
using Server_Dashboard;
|
using Server_Dashboard;
|
||||||
|
using Server_Dashboard.Controls;
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
@@ -47,7 +48,7 @@ namespace Server_Dashboard {
|
|||||||
public partial class LoginWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
public partial class LoginWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
#line 8 "..\..\..\LoginWindow.xaml"
|
#line 9 "..\..\..\LoginWindow.xaml"
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
internal Server_Dashboard.LoginWindow Login;
|
internal Server_Dashboard.LoginWindow Login;
|
||||||
|
|
||||||
@@ -55,7 +56,7 @@ namespace Server_Dashboard {
|
|||||||
#line hidden
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
#line 124 "..\..\..\LoginWindow.xaml"
|
#line 130 "..\..\..\LoginWindow.xaml"
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
internal System.Windows.Controls.TextBox UserName;
|
internal System.Windows.Controls.TextBox UserName;
|
||||||
|
|
||||||
@@ -63,7 +64,7 @@ namespace Server_Dashboard {
|
|||||||
#line hidden
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
#line 168 "..\..\..\LoginWindow.xaml"
|
#line 174 "..\..\..\LoginWindow.xaml"
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
internal System.Windows.Controls.PasswordBox Password;
|
internal System.Windows.Controls.PasswordBox Password;
|
||||||
|
|
||||||
@@ -71,7 +72,7 @@ namespace Server_Dashboard {
|
|||||||
#line hidden
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
#line 179 "..\..\..\LoginWindow.xaml"
|
#line 185 "..\..\..\LoginWindow.xaml"
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
internal System.Windows.Controls.TextBlock PasswordHint;
|
internal System.Windows.Controls.TextBlock PasswordHint;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "..\..\..\LoginWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DC5E405274889CDB3CDAE3C78BC0E5CCC83DDAB2"
|
#pragma checksum "..\..\..\LoginWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BC333A5F7B9E8D68E824FFFBFE4539E4AA85365F"
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// This code was generated by a tool.
|
||||||
@@ -15,6 +15,7 @@ using Microsoft.Xaml.Behaviors.Input;
|
|||||||
using Microsoft.Xaml.Behaviors.Layout;
|
using Microsoft.Xaml.Behaviors.Layout;
|
||||||
using Microsoft.Xaml.Behaviors.Media;
|
using Microsoft.Xaml.Behaviors.Media;
|
||||||
using Server_Dashboard;
|
using Server_Dashboard;
|
||||||
|
using Server_Dashboard.Controls;
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
@@ -47,7 +48,7 @@ namespace Server_Dashboard {
|
|||||||
public partial class LoginWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
public partial class LoginWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
#line 8 "..\..\..\LoginWindow.xaml"
|
#line 9 "..\..\..\LoginWindow.xaml"
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
internal Server_Dashboard.LoginWindow Login;
|
internal Server_Dashboard.LoginWindow Login;
|
||||||
|
|
||||||
@@ -55,7 +56,7 @@ namespace Server_Dashboard {
|
|||||||
#line hidden
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
#line 124 "..\..\..\LoginWindow.xaml"
|
#line 130 "..\..\..\LoginWindow.xaml"
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
internal System.Windows.Controls.TextBox UserName;
|
internal System.Windows.Controls.TextBox UserName;
|
||||||
|
|
||||||
@@ -63,7 +64,7 @@ namespace Server_Dashboard {
|
|||||||
#line hidden
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
#line 168 "..\..\..\LoginWindow.xaml"
|
#line 174 "..\..\..\LoginWindow.xaml"
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
internal System.Windows.Controls.PasswordBox Password;
|
internal System.Windows.Controls.PasswordBox Password;
|
||||||
|
|
||||||
@@ -71,7 +72,7 @@ namespace Server_Dashboard {
|
|||||||
#line hidden
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
#line 179 "..\..\..\LoginWindow.xaml"
|
#line 185 "..\..\..\LoginWindow.xaml"
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
internal System.Windows.Controls.TextBlock PasswordHint;
|
internal System.Windows.Controls.TextBlock PasswordHint;
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// Dieser Code wurde von einem Tool generiert.
|
// This code was generated by a tool.
|
||||||
// Laufzeitversion:4.0.30319.42000
|
// Runtime Version:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// der Code erneut generiert wird.
|
// the code is regenerated.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -19,5 +19,5 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Server Dashboard")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Server Dashboard")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
b852d494999982b43c2f775a16d53a25a0a321b6
|
175b43d009fc01852a21c7bd83bfe66423f7f332
|
||||||
|
|||||||
@@ -54,3 +54,5 @@ C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcor
|
|||||||
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Controls\DoubleRoundProgressBar\DoubleRoundProgressBar.baml
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Controls\DoubleRoundProgressBar\DoubleRoundProgressBar.baml
|
||||||
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard Socket.dll
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard Socket.dll
|
||||||
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard Socket.pdb
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard Socket.pdb
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Controls\LoadingIndicator\LoadingIndicator.g.cs
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Controls\LoadingIndicator\LoadingIndicator.baml
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -10,11 +10,11 @@ none
|
|||||||
false
|
false
|
||||||
TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
|
TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
|
||||||
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml
|
||||||
7-211744036
|
8-130641097
|
||||||
|
|
||||||
27-1860005045
|
28-605069555
|
||||||
2061472260849
|
2061472260849
|
||||||
Controls\Dashboard\CRUD Popup\CreateModulePopup.xaml;Controls\DoubleRoundProgressBar\DoubleRoundProgressBar.xaml;Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml;Controls\ServerModules\ServerModule.xaml;LoginWindow.xaml;Views\DashboardPages\MainDashboardPage.xaml;Views\DashboardWindow.xaml;
|
Controls\Dashboard\CRUD Popup\CreateModulePopup.xaml;Controls\DoubleRoundProgressBar\DoubleRoundProgressBar.xaml;Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml;Controls\LoadingIndicator\LoadingIndicator.xaml;Controls\ServerModules\ServerModule.xaml;LoginWindow.xaml;Views\DashboardPages\MainDashboardPage.xaml;Views\DashboardWindow.xaml;
|
||||||
|
|
||||||
False
|
False
|
||||||
|
|
||||||
|
|||||||
@@ -10,11 +10,11 @@ none
|
|||||||
false
|
false
|
||||||
TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
|
TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
|
||||||
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml
|
||||||
7-211744036
|
8-130641097
|
||||||
|
|
||||||
29835634981
|
302090570471
|
||||||
2061472260849
|
2061472260849
|
||||||
Controls\Dashboard\CRUD Popup\CreateModulePopup.xaml;Controls\DoubleRoundProgressBar\DoubleRoundProgressBar.xaml;Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml;Controls\ServerModules\ServerModule.xaml;LoginWindow.xaml;Views\DashboardPages\MainDashboardPage.xaml;Views\DashboardWindow.xaml;
|
Controls\Dashboard\CRUD Popup\CreateModulePopup.xaml;Controls\DoubleRoundProgressBar\DoubleRoundProgressBar.xaml;Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml;Controls\LoadingIndicator\LoadingIndicator.xaml;Controls\ServerModules\ServerModule.xaml;LoginWindow.xaml;Views\DashboardPages\MainDashboardPage.xaml;Views\DashboardWindow.xaml;
|
||||||
|
|
||||||
False
|
True
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
|
||||||
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\LoadingIndicator\LoadingIndicator.xaml;;
|
||||||
|
|
||||||
@@ -3,6 +3,7 @@ FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml;;
|
|||||||
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\Dashboard\CRUD Popup\CreateModulePopup.xaml;;
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\Dashboard\CRUD Popup\CreateModulePopup.xaml;;
|
||||||
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\DoubleRoundProgressBar\DoubleRoundProgressBar.xaml;;
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\DoubleRoundProgressBar\DoubleRoundProgressBar.xaml;;
|
||||||
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml;;
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\HalfRoundProgressBar\HalfRoundProgressBar.xaml;;
|
||||||
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\LoadingIndicator\LoadingIndicator.xaml;;
|
||||||
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\ServerModules\ServerModule.xaml;;
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Controls\ServerModules\ServerModule.xaml;;
|
||||||
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\LoginWindow.xaml;;
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\LoginWindow.xaml;;
|
||||||
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Views\DashboardPages\MainDashboardPage.xaml;;
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\Views\DashboardPages\MainDashboardPage.xaml;;
|
||||||
|
|||||||
Reference in New Issue
Block a user