Skip to content

Commit 038264f

Browse files
committed
Init
0 parents  commit 038264f

13 files changed

+2188
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
bin/
2+
obj/
3+
/packages/
4+
riderModule.iml
5+
/_ReSharper.Caches/

App.config

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
7+
<System.Windows.Forms.ApplicationConfigurationSection>
8+
<add key="DpiAwareness" value="PerMonitorV2" />
9+
</System.Windows.Forms.ApplicationConfigurationSection>
10+
11+
</configuration>
12+

MainForm.Designer.cs

+257
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MainForm.cs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Linq;
7+
using System.Text;
8+
using System.Threading.Tasks;
9+
using System.Windows.Forms;
10+
11+
namespace RDP_Portal {
12+
public partial class MainForm : Form {
13+
public MainForm() {
14+
InitializeComponent();
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)