2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 |
5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6 |
7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 16
4 | VisualStudioVersion = 16.0.32126.315
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cookies_Loader_Base", "Cookies_Loader_Base\Cookies_Loader_Base.csproj", "{2C5905A8-A227-4934-B4B5-BEA0F40577F8}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {2C5905A8-A227-4934-B4B5-BEA0F40577F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {2C5905A8-A227-4934-B4B5-BEA0F40577F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {2C5905A8-A227-4934-B4B5-BEA0F40577F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {2C5905A8-A227-4934-B4B5-BEA0F40577F8}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | GlobalSection(ExtensibilityGlobals) = postSolution
23 | SolutionGuid = {2335AA12-29DD-4906-985E-2D63E3213AF8}
24 | EndGlobalSection
25 | EndGlobal
26 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.InteropServices;
3 |
4 | // General Information about an assembly is controlled through the following
5 | // set of attributes. Change these attribute values to modify the information
6 | // associated with an assembly.
7 | [assembly: AssemblyTitle("Cookies Loader Base")]
8 | [assembly: AssemblyDescription("simple winforms GUI")]
9 | [assembly: AssemblyConfiguration("")]
10 | [assembly: AssemblyCompany("cookiesservices.xyz")]
11 | [assembly: AssemblyProduct("Template")]
12 | [assembly: AssemblyCopyright("Copyright © 2022")]
13 | [assembly: AssemblyTrademark("")]
14 | [assembly: AssemblyCulture("")]
15 |
16 | // Setting ComVisible to false makes the types in this assembly not visible
17 | // to COM components. If you need to access a type in this assembly from
18 | // COM, set the ComVisible attribute to true on that type.
19 | [assembly: ComVisible(false)]
20 |
21 | // The following GUID is for the ID of the typelib if this project is exposed to COM
22 | [assembly: Guid("2c5905a8-a227-4934-b4b5-bea0f40577f8")]
23 |
24 | // Version information for an assembly consists of the following four values:
25 | //
26 | // Major Version
27 | // Minor Version
28 | // Build Number
29 | // Revision
30 | //
31 | // You can specify all the values or you can default the Build and Revision Numbers
32 | // by using the '*' as shown below:
33 | // [assembly: AssemblyVersion("1.0.*")]
34 | [assembly: AssemblyVersion("1.0.0.0")]
35 | [assembly: AssemblyFileVersion("1.0.0.0")]
36 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | False
16 |
17 |
18 | 1
19 |
20 |
21 |
22 |
23 | Username
24 |
25 |
26 | Password
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Settings1.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace Cookies_Loader_Base {
12 |
13 |
14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
16 | internal sealed partial class Settings1 : global::System.Configuration.ApplicationSettingsBase {
17 |
18 | private static Settings1 defaultInstance = ((Settings1)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings1())));
19 |
20 | public static Settings1 Default {
21 | get {
22 | return defaultInstance;
23 | }
24 | }
25 |
26 | [global::System.Configuration.UserScopedSettingAttribute()]
27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
28 | [global::System.Configuration.DefaultSettingValueAttribute("Username")]
29 | public string nameS {
30 | get {
31 | return ((string)(this["nameS"]));
32 | }
33 | set {
34 | this["nameS"] = value;
35 | }
36 | }
37 |
38 | [global::System.Configuration.UserScopedSettingAttribute()]
39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
40 | [global::System.Configuration.DefaultSettingValueAttribute("Password")]
41 | public string passwordS {
42 | get {
43 | return ((string)(this["passwordS"]));
44 | }
45 | set {
46 | this["passwordS"] = value;
47 | }
48 | }
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace Cookies_Loader_Base.Properties {
12 |
13 |
14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
17 |
18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
19 |
20 | public static Settings Default {
21 | get {
22 | return defaultInstance;
23 | }
24 | }
25 |
26 | [global::System.Configuration.UserScopedSettingAttribute()]
27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
28 | [global::System.Configuration.DefaultSettingValueAttribute("False")]
29 | public bool Account_Created {
30 | get {
31 | return ((bool)(this["Account_Created"]));
32 | }
33 | set {
34 | this["Account_Created"] = value;
35 | }
36 | }
37 |
38 | [global::System.Configuration.UserScopedSettingAttribute()]
39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
40 | [global::System.Configuration.DefaultSettingValueAttribute("1")]
41 | public int Account_Level {
42 | get {
43 | return ((int)(this["Account_Level"]));
44 | }
45 | set {
46 | this["Account_Level"] = value;
47 | }
48 | }
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Welcome to cookies clean winforms GUI template 👋
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | > Simple and clean WinForms GUI created in my own spare time
14 |
15 |
16 | 
17 | 
18 |
19 |
20 | ## 🚀 〢 Usage
21 |
22 | ```c
23 | 1. Download or Gitclone this project
24 | 2. Open Cookies_Loader_Base.sln with Visual Studio 2019
25 | 3. Add the Bunfiu files
26 | 4. Open Login.cs and add your keyauth api details in
27 | 5. Open Register.cs and add your keyauth api details in
28 | 6. Build / Run the project
29 | ```
30 |
31 | ## 📃 〢 How to fix Bunifu errors
32 |
33 | > [Bunifu.Core.dll](https://github.com/Callumgm/Clean-GUI-Template/raw/master/Assets/Bunifu.Core.dll)
34 | > [Bunifu_UI_v1.5.3.dll](https://github.com/Callumgm/Clean-GUI-Template/raw/master/Assets/Bunifu_UI_v1.5.3.dll)
35 |
36 | ```c
37 | 1. Download the dll files
38 | 2. Left click on project then click "Add Reference"
39 | 3. And there at bottom of menu you can find Browse
40 | 4. Click it and select both dll files then press OK
41 | 5. Error should be fixed (rebuild the project)
42 | ```
43 |
44 | ## 💭 〢 ChangeLog
45 |
46 | ```diff
47 | v1.0.0 ⋮ 2022-07-15
48 | + major updates
49 |
50 | ```
51 |
52 | ## 👤 〢 Author
53 |
54 | 👤 **CookiesKush420**
55 | - Website: http://cookiesservices.xyz/
56 | - Twitter: [@Flashouttt](https://twitter.com/Flashouttt)
57 | - GitHub: [@Callumgm](https://github.com/Callumgm)
58 |
59 |
60 | ## 🤝 〢 Contributing
61 | Contributions, issues and feature requests are welcome!
Feel free to check
62 | [issues page](https://github.com/Callumgm/Clean-GUI-Template/issues).
63 |
64 |
65 | ## 🌟 〢 Show your support
66 | Give a ⭐️ if this project helped you!
67 |
68 |
69 | ## 📝 〢 License
70 | Copyright © 2022
71 | [CookiesKush420](https://github.com/Callumgm).
This project is [MIT](https://github.com/Callumgm/Clean-GUI-Template/blob/master/LICENCE) licensed.
72 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/app.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
37 |
45 |
46 |
47 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | ###############################################################################
2 | # Set default behavior to automatically normalize line endings.
3 | ###############################################################################
4 | * text=auto
5 |
6 | ###############################################################################
7 | # Set default behavior for command prompt diff.
8 | #
9 | # This is need for earlier builds of msysgit that does not have it on by
10 | # default for csharp files.
11 | # Note: This is only used by command line
12 | ###############################################################################
13 | #*.cs diff=csharp
14 |
15 | ###############################################################################
16 | # Set the merge driver for project and solution files
17 | #
18 | # Merging from the command prompt will add diff markers to the files if there
19 | # are conflicts (Merging from VS is not affected by the settings below, in VS
20 | # the diff markers are never inserted). Diff markers may cause the following
21 | # file extensions to fail to load in VS. An alternative would be to treat
22 | # these files as binary and thus will always conflict and require user
23 | # intervention with every merge. To do so, just uncomment the entries below
24 | ###############################################################################
25 | #*.sln merge=binary
26 | #*.csproj merge=binary
27 | #*.vbproj merge=binary
28 | #*.vcxproj merge=binary
29 | #*.vcproj merge=binary
30 | #*.dbproj merge=binary
31 | #*.fsproj merge=binary
32 | #*.lsproj merge=binary
33 | #*.wixproj merge=binary
34 | #*.modelproj merge=binary
35 | #*.sqlproj merge=binary
36 | #*.wwaproj merge=binary
37 |
38 | ###############################################################################
39 | # behavior for image files
40 | #
41 | # image files are treated as binary by default.
42 | ###############################################################################
43 | #*.jpg binary
44 | #*.png binary
45 | #*.gif binary
46 |
47 | ###############################################################################
48 | # diff behavior for common document formats
49 | #
50 | # Convert binary document formats to text before diffing them. This feature
51 | # is only available from the command line. Turn it on by uncommenting the
52 | # entries below.
53 | ###############################################################################
54 | #*.doc diff=astextplain
55 | #*.DOC diff=astextplain
56 | #*.docx diff=astextplain
57 | #*.DOCX diff=astextplain
58 | #*.dot diff=astextplain
59 | #*.DOT diff=astextplain
60 | #*.pdf diff=astextplain
61 | #*.PDF diff=astextplain
62 | #*.rtf diff=astextplain
63 | #*.RTF diff=astextplain
64 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/MainForm.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.ComponentModel;
3 | using System.Windows.Forms;
4 | using System.IO;
5 | using System.Net;
6 | using System.Runtime.InteropServices;
7 | using System.Diagnostics;
8 | using System.Collections.Generic;
9 | using System.Drawing;
10 | using System.Threading;
11 |
12 | namespace Cookies_Loader_Base
13 | {
14 | public partial class MainForm : Form
15 | {
16 | #region Rounded Form Corners
17 | [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")]
18 | private static extern IntPtr CreateRoundRectRgn
19 | (
20 | int nLeftRect, // x-coordinate of upper-left corner
21 | int nTopRect, // y-coordinate of upper-left corner
22 | int nRightRect, // x-coordinate of lower-right corner
23 | int nBottomRect, // y-coordinate of lower-right corner
24 | int nWidthEllipse, // height of ellipse
25 | int nHeightEllipse // width of ellipse
26 | );
27 | #endregion
28 |
29 | #region Initialize Form
30 | public MainForm()
31 | {
32 | InitializeComponent();
33 |
34 | #region Set Rounded Form Corners
35 | this.FormBorderStyle = FormBorderStyle.None;
36 | this.Region = Region.FromHrgn(CreateRoundRectRgn(0, 0, Width, Height, 10, 10));
37 | #endregion
38 | }
39 | #endregion
40 |
41 | #region Injector Modules
42 | [DllImport("kernel32.dll")]
43 | static extern IntPtr GetConsoleWindow();
44 |
45 | [DllImport("user32.dll")]
46 | static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
47 |
48 | private const int SW_HIDE = 0x0;
49 | private const int SW_SHOW = 0x5;
50 | #endregion
51 |
52 | #region Form Load
53 | private void LaunchForm_Load(object sender, EventArgs e)
54 | {
55 | Properties.Settings.Default.Account_Created = true;
56 | Properties.Settings.Default.Save();
57 |
58 | if (Properties.Settings.Default.Account_Level == 2)
59 | {
60 | label3.Text = "Trial Account";
61 | }
62 | else
63 | {
64 | label3.Text = "";
65 | }
66 | }
67 | #endregion
68 |
69 | #region Close Button
70 | private void siticoneControlBox1_Click(object sender, EventArgs e)
71 | {
72 | Thread.Sleep(2500);
73 | Environment.Exit(0);
74 | }
75 | #endregion
76 |
77 | #region Download Button Click
78 | private void LoginBtn_Click(object sender, EventArgs e)
79 | {
80 |
81 | }
82 | #endregion
83 |
84 | #region Uninstall Menu Button
85 | private void siticoneRoundedButton1_Click(object sender, EventArgs e)
86 | {
87 |
88 | }
89 | #endregion
90 |
91 | #region Launch Menu Button
92 | private void siticoneRoundedButton2_Click(object sender, EventArgs e)
93 | {
94 |
95 | }
96 | #endregion
97 | }
98 | }
99 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/alert.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.ComponentModel;
4 | using System.Data;
5 | using System.Drawing;
6 | using System.IO;
7 | using System.Linq;
8 | using System.Media;
9 | using System.Text;
10 | using System.Threading.Tasks;
11 | using System.Windows.Forms;
12 |
13 | namespace Cookies_Loader_Base
14 | {
15 | public partial class alert : Form
16 | {
17 | private void NotificationSound()
18 | {
19 | SoundPlayer simpleSound = new SoundPlayer(Path.GetTempPath() + "noti.wav");
20 | }
21 | string temp = Path.GetTempPath();
22 |
23 | public alert(string _message, AlertType type)
24 | {
25 | InitializeComponent();
26 | label1.Text = _message;
27 | switch (type)
28 | {
29 | case AlertType.success:
30 | NotificationSound();
31 | this.BackColor = Color.SeaGreen;
32 | icon.Image = imageList1.Images[0];
33 | break;
34 | case AlertType.info:
35 | NotificationSound();
36 | this.BackColor = Color.Gray;
37 | icon.Image = imageList1.Images[1];
38 | break;
39 | case AlertType.warning:
40 | NotificationSound();
41 | this.BackColor = Color.FromArgb(255, 128, 0);
42 | icon.Image = imageList1.Images[2];
43 | break;
44 | case AlertType.error:
45 | NotificationSound();
46 | this.BackColor = Color.Crimson;
47 | icon.Image = imageList1.Images[3];
48 | break;
49 | }
50 | }
51 |
52 | ///
53 | ///
54 | ///
55 | ///
56 | ///
57 | public static void Show(string message, AlertType type)
58 | {
59 | new Cookies_Loader_Base.alert(message, type).Show();
60 | }
61 |
62 | private void alert_Load(object sender, EventArgs e)
63 | {
64 | this.Opacity = 0;
65 | fade.Start();
66 | this.Top = Screen.PrimaryScreen.Bounds.Bottom - 100;
67 | this.Left = Screen.PrimaryScreen.Bounds.Left + 10;
68 | }
69 |
70 | private void bunifuImageButton1_Click(object sender, EventArgs e)
71 | {
72 | close.Start();
73 | }
74 |
75 | private void timeout_Tick(object sender, EventArgs e)
76 | {
77 | close.Start();
78 | }
79 | public enum AlertType
80 | {
81 | success, info, warning, error
82 | }
83 |
84 | int interval = 0;
85 | private void show_Tick(object sender, EventArgs e)
86 | {
87 | if (this.Top < 60)
88 | {
89 | this.Top += interval; // Drop the alert
90 | interval += 1;
91 | }
92 | else
93 | {
94 | show.Stop();
95 | }
96 | }
97 |
98 | private void close_Tick(object sender, EventArgs e)
99 | {
100 | this.Close();
101 | }
102 |
103 | private void fade_Tick(object sender, EventArgs e)
104 | {
105 | this.Opacity += 0.1;
106 | }
107 | }
108 | }
109 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace Cookies_Loader_Base.Properties {
12 | using System;
13 |
14 |
15 | ///
16 | /// A strongly-typed resource class, for looking up localized strings, etc.
17 | ///
18 | // This class was auto-generated by the StronglyTypedResourceBuilder
19 | // class via a tool like ResGen or Visual Studio.
20 | // To add or remove a member, edit your .ResX file then rerun ResGen
21 | // with the /str option, or rebuild your VS project.
22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
25 | internal class Resources {
26 |
27 | private static global::System.Resources.ResourceManager resourceMan;
28 |
29 | private static global::System.Globalization.CultureInfo resourceCulture;
30 |
31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
32 | internal Resources() {
33 | }
34 |
35 | ///
36 | /// Returns the cached ResourceManager instance used by this class.
37 | ///
38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
39 | internal static global::System.Resources.ResourceManager ResourceManager {
40 | get {
41 | if (object.ReferenceEquals(resourceMan, null)) {
42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Cookies_Loader_Base.Properties.Resources", typeof(Resources).Assembly);
43 | resourceMan = temp;
44 | }
45 | return resourceMan;
46 | }
47 | }
48 |
49 | ///
50 | /// Overrides the current thread's CurrentUICulture property for all
51 | /// resource lookups using this strongly typed resource class.
52 | ///
53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
54 | internal static global::System.Globalization.CultureInfo Culture {
55 | get {
56 | return resourceCulture;
57 | }
58 | set {
59 | resourceCulture = value;
60 | }
61 | }
62 |
63 | ///
64 | /// Looks up a localized resource of type System.Drawing.Bitmap.
65 | ///
66 | internal static System.Drawing.Bitmap Black_photo {
67 | get {
68 | object obj = ResourceManager.GetObject("Black_photo", resourceCulture);
69 | return ((System.Drawing.Bitmap)(obj));
70 | }
71 | }
72 |
73 | ///
74 | /// Looks up a localized resource of type System.Drawing.Bitmap.
75 | ///
76 | internal static System.Drawing.Bitmap check_mark {
77 | get {
78 | object obj = ResourceManager.GetObject("check-mark", resourceCulture);
79 | return ((System.Drawing.Bitmap)(obj));
80 | }
81 | }
82 |
83 | ///
84 | /// Looks up a localized resource of type System.Drawing.Bitmap.
85 | ///
86 | internal static System.Drawing.Bitmap close_button {
87 | get {
88 | object obj = ResourceManager.GetObject("close-button", resourceCulture);
89 | return ((System.Drawing.Bitmap)(obj));
90 | }
91 | }
92 |
93 | ///
94 | /// Looks up a localized resource of type System.Drawing.Bitmap.
95 | ///
96 | internal static System.Drawing.Bitmap cloud {
97 | get {
98 | object obj = ResourceManager.GetObject("cloud", resourceCulture);
99 | return ((System.Drawing.Bitmap)(obj));
100 | }
101 | }
102 |
103 | ///
104 | /// Looks up a localized resource of type System.Drawing.Bitmap.
105 | ///
106 | internal static System.Drawing.Bitmap download {
107 | get {
108 | object obj = ResourceManager.GetObject("download", resourceCulture);
109 | return ((System.Drawing.Bitmap)(obj));
110 | }
111 | }
112 |
113 | ///
114 | /// Looks up a localized resource of type System.Drawing.Bitmap.
115 | ///
116 | internal static System.Drawing.Bitmap giphy__1_ {
117 | get {
118 | object obj = ResourceManager.GetObject("giphy (1)", resourceCulture);
119 | return ((System.Drawing.Bitmap)(obj));
120 | }
121 | }
122 |
123 | ///
124 | /// Looks up a localized resource of type System.Drawing.Bitmap.
125 | ///
126 | internal static System.Drawing.Bitmap password1 {
127 | get {
128 | object obj = ResourceManager.GetObject("password1", resourceCulture);
129 | return ((System.Drawing.Bitmap)(obj));
130 | }
131 | }
132 |
133 | ///
134 | /// Looks up a localized resource of type System.Drawing.Bitmap.
135 | ///
136 | internal static System.Drawing.Bitmap puddle {
137 | get {
138 | object obj = ResourceManager.GetObject("puddle", resourceCulture);
139 | return ((System.Drawing.Bitmap)(obj));
140 | }
141 | }
142 |
143 | ///
144 | /// Looks up a localized resource of type System.Drawing.Bitmap.
145 | ///
146 | internal static System.Drawing.Bitmap rain_L {
147 | get {
148 | object obj = ResourceManager.GetObject("rain_L", resourceCulture);
149 | return ((System.Drawing.Bitmap)(obj));
150 | }
151 | }
152 |
153 | ///
154 | /// Looks up a localized resource of type System.Drawing.Bitmap.
155 | ///
156 | internal static System.Drawing.Bitmap user1 {
157 | get {
158 | object obj = ResourceManager.GetObject("user1", resourceCulture);
159 | return ((System.Drawing.Bitmap)(obj));
160 | }
161 | }
162 |
163 | ///
164 | /// Looks up a localized resource of type System.Drawing.Bitmap.
165 | ///
166 | internal static System.Drawing.Bitmap x {
167 | get {
168 | object obj = ResourceManager.GetObject("x", resourceCulture);
169 | return ((System.Drawing.Bitmap)(obj));
170 | }
171 | }
172 | }
173 | }
174 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/alert.Designer.cs:
--------------------------------------------------------------------------------
1 |
2 | namespace Cookies_Loader_Base
3 | {
4 | partial class alert
5 | {
6 | ///
7 | /// Required designer variable.
8 | ///
9 | private System.ComponentModel.IContainer components = null;
10 |
11 | ///
12 | /// Clean up any resources being used.
13 | ///
14 | /// true if managed resources should be disposed; otherwise, false.
15 | protected override void Dispose(bool disposing)
16 | {
17 | if (disposing && (components != null))
18 | {
19 | components.Dispose();
20 | }
21 | base.Dispose(disposing);
22 | }
23 |
24 | #region Windows Form Designer generated code
25 |
26 | ///
27 | /// Required method for Designer support - do not modify
28 | /// the contents of this method with the code editor.
29 | ///
30 | private void InitializeComponent()
31 | {
32 | this.components = new System.ComponentModel.Container();
33 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(alert));
34 | this.bunifuElipse1 = new Bunifu.Framework.UI.BunifuElipse(this.components);
35 | this.imageList1 = new System.Windows.Forms.ImageList(this.components);
36 | this.label1 = new System.Windows.Forms.Label();
37 | this.bunifuImageButton1 = new Bunifu.Framework.UI.BunifuImageButton();
38 | this.icon = new System.Windows.Forms.PictureBox();
39 | this.timeout = new System.Windows.Forms.Timer(this.components);
40 | this.show = new System.Windows.Forms.Timer(this.components);
41 | this.close = new System.Windows.Forms.Timer(this.components);
42 | this.fade = new System.Windows.Forms.Timer(this.components);
43 | ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton1)).BeginInit();
44 | ((System.ComponentModel.ISupportInitialize)(this.icon)).BeginInit();
45 | this.SuspendLayout();
46 | //
47 | // bunifuElipse1
48 | //
49 | this.bunifuElipse1.ElipseRadius = 5;
50 | this.bunifuElipse1.TargetControl = this;
51 | //
52 | // imageList1
53 | //
54 | this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
55 | this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
56 | this.imageList1.Images.SetKeyName(0, "check-mark.png");
57 | this.imageList1.Images.SetKeyName(1, "info.png");
58 | this.imageList1.Images.SetKeyName(2, "warn.png");
59 | this.imageList1.Images.SetKeyName(3, "error.png");
60 | //
61 | // label1
62 | //
63 | this.label1.AutoSize = true;
64 | this.label1.Font = new System.Drawing.Font("Century Gothic", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
65 | this.label1.Location = new System.Drawing.Point(92, 35);
66 | this.label1.Name = "label1";
67 | this.label1.Size = new System.Drawing.Size(167, 22);
68 | this.label1.TabIndex = 1;
69 | this.label1.Text = "Success Message";
70 | //
71 | // bunifuImageButton1
72 | //
73 | this.bunifuImageButton1.BackColor = System.Drawing.Color.Transparent;
74 | this.bunifuImageButton1.Cursor = System.Windows.Forms.Cursors.Hand;
75 | this.bunifuImageButton1.Image = global::Cookies_Loader_Base.Properties.Resources.close_button;
76 | this.bunifuImageButton1.ImageActive = null;
77 | this.bunifuImageButton1.Location = new System.Drawing.Point(389, 6);
78 | this.bunifuImageButton1.Name = "bunifuImageButton1";
79 | this.bunifuImageButton1.Size = new System.Drawing.Size(15, 15);
80 | this.bunifuImageButton1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
81 | this.bunifuImageButton1.TabIndex = 2;
82 | this.bunifuImageButton1.TabStop = false;
83 | this.bunifuImageButton1.Zoom = 10;
84 | this.bunifuImageButton1.Click += new System.EventHandler(this.bunifuImageButton1_Click);
85 | //
86 | // icon
87 | //
88 | this.icon.Image = ((System.Drawing.Image)(resources.GetObject("icon.Image")));
89 | this.icon.Location = new System.Drawing.Point(12, 12);
90 | this.icon.Name = "icon";
91 | this.icon.Size = new System.Drawing.Size(54, 70);
92 | this.icon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
93 | this.icon.TabIndex = 0;
94 | this.icon.TabStop = false;
95 | //
96 | // timeout
97 | //
98 | this.timeout.Enabled = true;
99 | this.timeout.Interval = 5000;
100 | this.timeout.Tick += new System.EventHandler(this.timeout_Tick);
101 | //
102 | // show
103 | //
104 | this.show.Tick += new System.EventHandler(this.show_Tick);
105 | //
106 | // close
107 | //
108 | this.close.Interval = 10;
109 | this.close.Tick += new System.EventHandler(this.close_Tick);
110 | //
111 | // fade
112 | //
113 | this.fade.Interval = 10;
114 | this.fade.Tick += new System.EventHandler(this.fade_Tick);
115 | //
116 | // alert
117 | //
118 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
119 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
120 | this.BackColor = System.Drawing.Color.SeaGreen;
121 | this.ClientSize = new System.Drawing.Size(411, 94);
122 | this.Controls.Add(this.bunifuImageButton1);
123 | this.Controls.Add(this.label1);
124 | this.Controls.Add(this.icon);
125 | this.ForeColor = System.Drawing.Color.White;
126 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
127 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
128 | this.Name = "alert";
129 | this.ShowInTaskbar = false;
130 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
131 | this.Text = "LOGINAlert";
132 | this.Load += new System.EventHandler(this.alert_Load);
133 | ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton1)).EndInit();
134 | ((System.ComponentModel.ISupportInitialize)(this.icon)).EndInit();
135 | this.ResumeLayout(false);
136 | this.PerformLayout();
137 |
138 | }
139 |
140 | #endregion
141 |
142 | private Bunifu.Framework.UI.BunifuElipse bunifuElipse1;
143 | private System.Windows.Forms.Label label1;
144 | private System.Windows.Forms.PictureBox icon;
145 | private System.Windows.Forms.ImageList imageList1;
146 | private Bunifu.Framework.UI.BunifuImageButton bunifuImageButton1;
147 | private System.Windows.Forms.Timer timeout;
148 | private System.Windows.Forms.Timer show;
149 | private System.Windows.Forms.Timer close;
150 | private System.Windows.Forms.Timer fade;
151 | }
152 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 | ##
4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5 |
6 | # User-specific files
7 | *.rsuser
8 | *.suo
9 | *.user
10 | *.userosscache
11 | *.sln.docstates
12 |
13 | # User-specific files (MonoDevelop/Xamarin Studio)
14 | *.userprefs
15 |
16 | # Mono auto generated files
17 | mono_crash.*
18 |
19 | # Build results
20 | [Dd]ebug/
21 | [Dd]ebugPublic/
22 | [Rr]elease/
23 | [Rr]eleases/
24 | x64/
25 | x86/
26 | [Ww][Ii][Nn]32/
27 | [Aa][Rr][Mm]/
28 | [Aa][Rr][Mm]64/
29 | bld/
30 | [Bb]in/
31 | [Oo]bj/
32 | [Oo]ut/
33 | [Ll]og/
34 | [Ll]ogs/
35 |
36 | # Visual Studio 2015/2017 cache/options directory
37 | .vs/
38 | # Uncomment if you have tasks that create the project's static files in wwwroot
39 | #wwwroot/
40 |
41 | # Visual Studio 2017 auto generated files
42 | Generated\ Files/
43 |
44 | # MSTest test Results
45 | [Tt]est[Rr]esult*/
46 | [Bb]uild[Ll]og.*
47 |
48 | # NUnit
49 | *.VisualState.xml
50 | TestResult.xml
51 | nunit-*.xml
52 |
53 | # Build Results of an ATL Project
54 | [Dd]ebugPS/
55 | [Rr]eleasePS/
56 | dlldata.c
57 |
58 | # Benchmark Results
59 | BenchmarkDotNet.Artifacts/
60 |
61 | # .NET Core
62 | project.lock.json
63 | project.fragment.lock.json
64 | artifacts/
65 |
66 | # ASP.NET Scaffolding
67 | ScaffoldingReadMe.txt
68 |
69 | # StyleCop
70 | StyleCopReport.xml
71 |
72 | # Files built by Visual Studio
73 | *_i.c
74 | *_p.c
75 | *_h.h
76 | *.ilk
77 | *.meta
78 | *.obj
79 | *.iobj
80 | *.pch
81 | *.pdb
82 | *.ipdb
83 | *.pgc
84 | *.pgd
85 | *.rsp
86 | *.sbr
87 | *.tlb
88 | *.tli
89 | *.tlh
90 | *.tmp
91 | *.tmp_proj
92 | *_wpftmp.csproj
93 | *.log
94 | *.vspscc
95 | *.vssscc
96 | .builds
97 | *.pidb
98 | *.svclog
99 | *.scc
100 |
101 | # Chutzpah Test files
102 | _Chutzpah*
103 |
104 | # Visual C++ cache files
105 | ipch/
106 | *.aps
107 | *.ncb
108 | *.opendb
109 | *.opensdf
110 | *.sdf
111 | *.cachefile
112 | *.VC.db
113 | *.VC.VC.opendb
114 |
115 | # Visual Studio profiler
116 | *.psess
117 | *.vsp
118 | *.vspx
119 | *.sap
120 |
121 | # Visual Studio Trace Files
122 | *.e2e
123 |
124 | # TFS 2012 Local Workspace
125 | $tf/
126 |
127 | # Guidance Automation Toolkit
128 | *.gpState
129 |
130 | # ReSharper is a .NET coding add-in
131 | _ReSharper*/
132 | *.[Rr]e[Ss]harper
133 | *.DotSettings.user
134 |
135 | # TeamCity is a build add-in
136 | _TeamCity*
137 |
138 | # DotCover is a Code Coverage Tool
139 | *.dotCover
140 |
141 | # AxoCover is a Code Coverage Tool
142 | .axoCover/*
143 | !.axoCover/settings.json
144 |
145 | # Coverlet is a free, cross platform Code Coverage Tool
146 | coverage*.json
147 | coverage*.xml
148 | coverage*.info
149 |
150 | # Visual Studio code coverage results
151 | *.coverage
152 | *.coveragexml
153 |
154 | # NCrunch
155 | _NCrunch_*
156 | .*crunch*.local.xml
157 | nCrunchTemp_*
158 |
159 | # MightyMoose
160 | *.mm.*
161 | AutoTest.Net/
162 |
163 | # Web workbench (sass)
164 | .sass-cache/
165 |
166 | # Installshield output folder
167 | [Ee]xpress/
168 |
169 | # DocProject is a documentation generator add-in
170 | DocProject/buildhelp/
171 | DocProject/Help/*.HxT
172 | DocProject/Help/*.HxC
173 | DocProject/Help/*.hhc
174 | DocProject/Help/*.hhk
175 | DocProject/Help/*.hhp
176 | DocProject/Help/Html2
177 | DocProject/Help/html
178 |
179 | # Click-Once directory
180 | publish/
181 |
182 | # Publish Web Output
183 | *.[Pp]ublish.xml
184 | *.azurePubxml
185 | # Note: Comment the next line if you want to checkin your web deploy settings,
186 | # but database connection strings (with potential passwords) will be unencrypted
187 | *.pubxml
188 | *.publishproj
189 |
190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
191 | # checkin your Azure Web App publish settings, but sensitive information contained
192 | # in these scripts will be unencrypted
193 | PublishScripts/
194 |
195 | # NuGet Packages
196 | *.nupkg
197 | # NuGet Symbol Packages
198 | *.snupkg
199 | # The packages folder can be ignored because of Package Restore
200 | **/[Pp]ackages/*
201 | # except build/, which is used as an MSBuild target.
202 | !**/[Pp]ackages/build/
203 | # Uncomment if necessary however generally it will be regenerated when needed
204 | #!**/[Pp]ackages/repositories.config
205 | # NuGet v3's project.json files produces more ignorable files
206 | *.nuget.props
207 | *.nuget.targets
208 |
209 | # Microsoft Azure Build Output
210 | csx/
211 | *.build.csdef
212 |
213 | # Microsoft Azure Emulator
214 | ecf/
215 | rcf/
216 |
217 | # Windows Store app package directories and files
218 | AppPackages/
219 | BundleArtifacts/
220 | Package.StoreAssociation.xml
221 | _pkginfo.txt
222 | *.appx
223 | *.appxbundle
224 | *.appxupload
225 |
226 | # Visual Studio cache files
227 | # files ending in .cache can be ignored
228 | *.[Cc]ache
229 | # but keep track of directories ending in .cache
230 | !?*.[Cc]ache/
231 |
232 | # Others
233 | ClientBin/
234 | ~$*
235 | *~
236 | *.dbmdl
237 | *.dbproj.schemaview
238 | *.jfm
239 | *.pfx
240 | *.publishsettings
241 | orleans.codegen.cs
242 |
243 | # Including strong name files can present a security risk
244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424)
245 | #*.snk
246 |
247 | # Since there are multiple workflows, uncomment next line to ignore bower_components
248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
249 | #bower_components/
250 |
251 | # RIA/Silverlight projects
252 | Generated_Code/
253 |
254 | # Backup & report files from converting an old project file
255 | # to a newer Visual Studio version. Backup files are not needed,
256 | # because we have git ;-)
257 | _UpgradeReport_Files/
258 | Backup*/
259 | UpgradeLog*.XML
260 | UpgradeLog*.htm
261 | ServiceFabricBackup/
262 | *.rptproj.bak
263 |
264 | # SQL Server files
265 | *.mdf
266 | *.ldf
267 | *.ndf
268 |
269 | # Business Intelligence projects
270 | *.rdl.data
271 | *.bim.layout
272 | *.bim_*.settings
273 | *.rptproj.rsuser
274 | *- [Bb]ackup.rdl
275 | *- [Bb]ackup ([0-9]).rdl
276 | *- [Bb]ackup ([0-9][0-9]).rdl
277 |
278 | # Microsoft Fakes
279 | FakesAssemblies/
280 |
281 | # GhostDoc plugin setting file
282 | *.GhostDoc.xml
283 |
284 | # Node.js Tools for Visual Studio
285 | .ntvs_analysis.dat
286 | node_modules/
287 |
288 | # Visual Studio 6 build log
289 | *.plg
290 |
291 | # Visual Studio 6 workspace options file
292 | *.opt
293 |
294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
295 | *.vbw
296 |
297 | # Visual Studio LightSwitch build output
298 | **/*.HTMLClient/GeneratedArtifacts
299 | **/*.DesktopClient/GeneratedArtifacts
300 | **/*.DesktopClient/ModelManifest.xml
301 | **/*.Server/GeneratedArtifacts
302 | **/*.Server/ModelManifest.xml
303 | _Pvt_Extensions
304 |
305 | # Paket dependency manager
306 | .paket/paket.exe
307 | paket-files/
308 |
309 | # FAKE - F# Make
310 | .fake/
311 |
312 | # CodeRush personal settings
313 | .cr/personal
314 |
315 | # Python Tools for Visual Studio (PTVS)
316 | __pycache__/
317 | *.pyc
318 |
319 | # Cake - Uncomment if you are using it
320 | # tools/**
321 | # !tools/packages.config
322 |
323 | # Tabs Studio
324 | *.tss
325 |
326 | # Telerik's JustMock configuration file
327 | *.jmconfig
328 |
329 | # BizTalk build output
330 | *.btp.cs
331 | *.btm.cs
332 | *.odx.cs
333 | *.xsd.cs
334 |
335 | # OpenCover UI analysis results
336 | OpenCover/
337 |
338 | # Azure Stream Analytics local run output
339 | ASALocalRun/
340 |
341 | # MSBuild Binary and Structured Log
342 | *.binlog
343 |
344 | # NVidia Nsight GPU debugger configuration file
345 | *.nvuser
346 |
347 | # MFractors (Xamarin productivity tool) working folder
348 | .mfractor/
349 |
350 | # Local History for Visual Studio
351 | .localhistory/
352 |
353 | # BeatPulse healthcheck temp database
354 | healthchecksdb
355 |
356 | # Backup folder for Package Reference Convert tool in Visual Studio 2017
357 | MigrationBackup/
358 |
359 | # Ionide (cross platform F# VS Code tools) working folder
360 | .ionide/
361 |
362 | # Fody - auto-generated XML schema
363 | FodyWeavers.xsd
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Properties/Resources.resx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 | text/microsoft-resx
110 |
111 |
112 | 2.0
113 |
114 |
115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
119 |
120 |
121 |
122 | ..\Resources\cloud.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
123 |
124 |
125 | ..\Resources\x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
126 |
127 |
128 | ..\Resources\check-mark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
129 |
130 |
131 | ..\Resources\close-button.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
132 |
133 |
134 | ..\Resources\Black_photo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
135 |
136 |
137 | ..\Resources\password1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
138 |
139 |
140 | ..\Resources\puddle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
141 |
142 |
143 | ..\Resources\user1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
144 |
145 |
146 | ..\Resources\download.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
147 |
148 |
149 | ..\Resources\rain_L.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
150 |
151 |
152 | ..\Resources\giphy (1).gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
153 |
154 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/LoadingForm.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Drawing;
3 | using System.Windows.Forms;
4 | using System.Runtime.InteropServices;
5 | using System.Net;
6 | using System.IO;
7 |
8 | namespace Cookies_Loader_Base
9 | {
10 | public partial class LoadingForm : Form
11 | {
12 | // Rain
13 | int[] rainSpeeds = { 4, 6, 8, 3, 5, 6, 7, 4 };
14 | int loadingSpeed = 5;
15 | float initialPercentage = 0;
16 |
17 | // Animated Text
18 | int counter = 0;
19 | int len = 0;
20 | string text;
21 |
22 | #region dll Imports
23 | [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")]
24 | private static extern IntPtr CreateRoundRectRgn(
25 | int left,
26 | int top,
27 | int right,
28 | int bottom,
29 | int width,
30 | int height
31 | );
32 | #endregion
33 |
34 | public LoadingForm()
35 | {
36 | InitializeComponent();
37 | Region = Region.FromHrgn(CreateRoundRectRgn(0, 0, Width, Height, 7, 7)); // Rounds form
38 | }
39 |
40 | #region Form Load
41 | private void LoadingForm_Load(object sender, EventArgs e)
42 | {
43 | #region Start Fade In
44 | this.Opacity = 0;
45 | fadeintimer.Start();
46 | #endregion
47 |
48 | #region Start Animations
49 | //Start rain
50 | timer1.Start();
51 | timer2.Start();
52 |
53 | // Start text
54 | text = label2.Text;
55 | len = text.Length;
56 | label2.Text = "";
57 | timer3.Start();
58 | #endregion
59 | }
60 | #endregion
61 |
62 | #region Single Rain Animation
63 | private void timer1_Tick(object sender, EventArgs e)
64 | {
65 |
66 | for (int i = 0; i < 8; i++)
67 | {
68 | switch (i)
69 | {
70 | case 0:
71 | //animation for rain 1
72 | pictureBox3.Location = new Point(pictureBox3.Location.X, pictureBox3.Location.Y + rainSpeeds[i]);
73 | if (pictureBox3.Location.Y > panel1.Size.Height + pictureBox3.Size.Height)
74 | {
75 | pictureBox3.Location = new Point(pictureBox3.Location.X, 0 - pictureBox3.Size.Height);
76 | }
77 | break;
78 | case 1:
79 | //animation for rain 2
80 | pictureBox4.Location = new Point(pictureBox4.Location.X, pictureBox4.Location.Y + rainSpeeds[i]);
81 | if (pictureBox4.Location.Y > panel1.Size.Height + pictureBox4.Size.Height)
82 | {
83 | pictureBox4.Location = new Point(pictureBox4.Location.X, 0 - pictureBox4.Size.Height);
84 | }
85 | break;
86 | case 2:
87 | //animation for rain 3
88 | pictureBox5.Location = new Point(pictureBox5.Location.X, pictureBox5.Location.Y + rainSpeeds[i]);
89 | if (pictureBox5.Location.Y > panel1.Size.Height + pictureBox5.Size.Height)
90 | {
91 | pictureBox5.Location = new Point(pictureBox5.Location.X, 0 - pictureBox5.Size.Height);
92 | }
93 | break;
94 | case 3:
95 | //animation for rain 4
96 | pictureBox6.Location = new Point(pictureBox6.Location.X, pictureBox6.Location.Y + rainSpeeds[i]);
97 | if (pictureBox6.Location.Y > panel1.Size.Height + pictureBox6.Size.Height)
98 | {
99 | pictureBox6.Location = new Point(pictureBox6.Location.X, 0 - pictureBox6.Size.Height);
100 | }
101 | break;
102 | case 4:
103 | //animation for rain 5
104 | pictureBox7.Location = new Point(pictureBox7.Location.X, pictureBox7.Location.Y + rainSpeeds[i]);
105 | if (pictureBox7.Location.Y > panel1.Size.Height + pictureBox7.Size.Height)
106 | {
107 | pictureBox7.Location = new Point(pictureBox7.Location.X, 0 - pictureBox7.Size.Height);
108 | }
109 | break;
110 | case 5:
111 | //animation for rain 6
112 | pictureBox8.Location = new Point(pictureBox8.Location.X, pictureBox8.Location.Y + rainSpeeds[i]);
113 | if (pictureBox8.Location.Y > panel1.Size.Height + pictureBox8.Size.Height)
114 | {
115 | pictureBox8.Location = new Point(pictureBox8.Location.X, 0 - pictureBox8.Size.Height);
116 | }
117 | break;
118 | case 6:
119 | //animation for rain 7
120 | pictureBox9.Location = new Point(pictureBox9.Location.X, pictureBox9.Location.Y + rainSpeeds[i]);
121 | if (pictureBox9.Location.Y > panel1.Size.Height + pictureBox9.Size.Height)
122 | {
123 | pictureBox9.Location = new Point(pictureBox9.Location.X, 0 - pictureBox9.Size.Height);
124 | }
125 | break;
126 | case 7:
127 | //animation for rain 8
128 | pictureBox10.Location = new Point(pictureBox10.Location.X, pictureBox10.Location.Y + rainSpeeds[i]);
129 | if (pictureBox10.Location.Y > panel1.Size.Height + pictureBox10.Size.Height)
130 | {
131 | pictureBox10.Location = new Point(pictureBox10.Location.X, 0 - pictureBox10.Size.Height);
132 | }
133 | break;
134 | }
135 | }
136 |
137 | }
138 | #endregion
139 |
140 | #region Rain Puddle Animation
141 | private void timer2_Tick(object sender, EventArgs e)
142 | {
143 |
144 | initialPercentage += loadingSpeed;
145 | float percentage = initialPercentage / pictureBox2.Height * 100;
146 |
147 | label1.Text = (int)percentage + " %";
148 |
149 | panel2.Location = new Point(panel2.Location.X, panel2.Location.Y + loadingSpeed);
150 | if (panel2.Location.Y > pictureBox2.Location.Y + pictureBox2.Height)
151 | {
152 | label1.Text = "100 %";
153 | this.timer2.Stop();
154 |
155 | if (Properties.Settings.Default.Account_Created == true)
156 | {
157 | this.Hide();
158 | var form1 = new Login();
159 | form1.Closed += (s, args) => this.Close();
160 | form1.Show();
161 | }
162 | else
163 | {
164 | this.Hide();
165 | var form1 = new Register();
166 | form1.Closed += (s, args) => this.Close();
167 | form1.Show();
168 | }
169 | }
170 | }
171 | #endregion
172 |
173 | #region Animated Text
174 | void resetTimer1()
175 | {
176 | counter = 0;
177 | len = 0;
178 | label2.Text = "Hooking. . .";
179 | text = label2.Text;
180 | len = text.Length;
181 | label2.Text = "";
182 | timer4.Start();
183 | }
184 |
185 | void resetTimer2()
186 | {
187 | counter = 0;
188 | len = 0;
189 | label2.Text = "Installing Modules. . .";
190 | text = label2.Text;
191 | len = text.Length;
192 | label2.Text = "";
193 | timer5.Start();
194 | }
195 |
196 | void resetTimer3()
197 | {
198 | counter = 0;
199 | len = 0;
200 | label2.Text = "Seaching for funny. . .";
201 | text = label2.Text;
202 | len = text.Length;
203 | label2.Text = "";
204 | timer6.Start();
205 | }
206 |
207 | private void timer3_Tick(object sender, EventArgs e)
208 | {
209 | label2.Text = text.Substring(0, counter);
210 | ++counter;
211 | if (counter > len)
212 | {
213 | timer3.Stop();
214 | resetTimer1();
215 |
216 | }
217 | }
218 |
219 | private void timer4_Tick(object sender, EventArgs e)
220 | {
221 | label2.Text = text.Substring(0, counter);
222 | ++counter;
223 | if (counter > len)
224 | {
225 | timer4.Stop();
226 | resetTimer2();
227 | }
228 | }
229 |
230 | private void timer5_Tick(object sender, EventArgs e)
231 | {
232 | label2.Text = text.Substring(0, counter);
233 | ++counter;
234 | if (counter > len)
235 | {
236 | timer5.Stop();
237 | resetTimer3();
238 | }
239 | }
240 |
241 | private void timer6_Tick(object sender, EventArgs e)
242 | {
243 | label2.Text = text.Substring(0, counter);
244 | ++counter;
245 | if (counter > len)
246 | {
247 | timer6.Stop();
248 | }
249 | }
250 | #endregion
251 |
252 | private void fadeintimer_Tick(object sender, EventArgs e)
253 | {
254 | this.Opacity += 0.05;
255 | }
256 | }
257 | }
258 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Cookies_Loader_Base.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {2C5905A8-A227-4934-B4B5-BEA0F40577F8}
8 | WinExe
9 | Cookies_Loader_Base
10 | Cookies_Loader_Base
11 | v4.7.2
12 | 512
13 | true
14 | true
15 | publish\
16 | true
17 | Disk
18 | false
19 | Foreground
20 | 7
21 | Days
22 | false
23 | false
24 | true
25 | 0
26 | 1.0.0.%2a
27 | false
28 | false
29 | true
30 |
31 |
32 | AnyCPU
33 | true
34 | full
35 | false
36 | bin\Debug\
37 | DEBUG;TRACE
38 | prompt
39 | 4
40 |
41 |
42 | AnyCPU
43 | pdbonly
44 | true
45 | bin\Release\
46 | TRACE
47 | prompt
48 | 4
49 |
50 |
51 | app.manifest
52 |
53 |
54 | Untitled1.ico
55 |
56 |
57 | false
58 |
59 |
60 |
61 | ..\..\..\..\Downloads\Bunifu_UI_v1.5.3.dll
62 |
63 |
64 | ..\..\..\..\Downloads\Discord-RPC-main\Discord-RPC-main\packages\DiscordRichPresence.1.0.175\lib\net35\DiscordRPC.dll
65 |
66 |
67 |
68 | False
69 | ..\..\..\..\Downloads\Discord-RPC-main\Discord-RPC-main\packages\Newtonsoft.Json.13.0.1-beta1\lib\net45\Newtonsoft.Json.dll
70 |
71 |
72 | ..\..\..\..\Downloads\KeyAuth-CS-Example-main\KeyAuth-CS-Example-main\Form\bin\Debug\Siticone.UI.dll
73 | False
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 | Form
92 |
93 |
94 | alert.cs
95 |
96 |
97 |
98 | True
99 | True
100 | Resources.resx
101 |
102 |
103 | Form
104 |
105 |
106 | Register.cs
107 |
108 |
109 | Form
110 |
111 |
112 | Login.cs
113 |
114 |
115 | Form
116 |
117 |
118 | MainForm.cs
119 |
120 |
121 | Form
122 |
123 |
124 | LoadingForm.cs
125 |
126 |
127 |
128 |
129 | True
130 | True
131 | Settings1.settings
132 |
133 |
134 | alert.cs
135 |
136 |
137 | Register.cs
138 |
139 |
140 | Login.cs
141 |
142 |
143 | MainForm.cs
144 |
145 |
146 | LoadingForm.cs
147 |
148 |
149 | ResXFileCodeGenerator
150 | Designer
151 | Resources.Designer.cs
152 |
153 |
154 |
155 |
156 | SettingsSingleFileGenerator
157 | Settings.Designer.cs
158 |
159 |
160 | True
161 | Settings.settings
162 | True
163 |
164 |
165 | SettingsSingleFileGenerator
166 | Settings1.Designer.cs
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 | False
229 | Microsoft .NET Framework 4.7.2 %28x86 and x64%29
230 | true
231 |
232 |
233 | False
234 | .NET Framework 3.5 SP1
235 | false
236 |
237 |
238 |
239 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Login.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Diagnostics;
3 | using System.Net;
4 | using System.IO;
5 | using System.Threading;
6 | using System.Windows.Forms;
7 | using System.Runtime.InteropServices;
8 | using System.Drawing;
9 |
10 | namespace Cookies_Loader_Base
11 | {
12 | public partial class Login : Form
13 | {
14 | #region Drop Shadow & Rounded Form Corners
15 |
16 | #region DLL Imports
17 |
18 | #region Rounded Form Corners
19 | [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")]
20 | private static extern IntPtr CreateRoundRectRgn
21 | (
22 | int nLeftRect, // x-coordinate of upper-left corner
23 | int nTopRect, // y-coordinate of upper-left corner
24 | int nRightRect, // x-coordinate of lower-right corner
25 | int nBottomRect, // y-coordinate of lower-right corner
26 | int nWidthEllipse, // height of ellipse
27 | int nHeightEllipse // width of ellipse
28 | );
29 | #endregion
30 |
31 | #region Drop Shadow
32 | [DllImport("dwmapi.dll")]
33 | public static extern int DwmExtendFrameIntoClientArea(IntPtr hWnd, ref MARGINS pMarInset);
34 |
35 | [DllImport("dwmapi.dll")]
36 | public static extern int DwmSetWindowAttribute(IntPtr hwnd, int attr, ref int attrValue, int attrSize);
37 |
38 | [DllImport("dwmapi.dll")]
39 | public static extern int DwmIsCompositionEnabled(ref int pfEnabled);
40 | #endregion
41 |
42 | #endregion
43 |
44 | #region Other Shit
45 | private bool m_aeroEnabled; // variables for box shadow
46 | private const int CS_DROPSHADOW = 0x00020000;
47 | private const int WM_NCPAINT = 0x0085;
48 | private const int WM_ACTIVATEAPP = 0x001C;
49 |
50 | public struct MARGINS // struct for box shadow
51 | {
52 | public int leftWidth;
53 | public int rightWidth;
54 | public int topHeight;
55 | public int bottomHeight;
56 | }
57 |
58 | private const int WM_NCHITTEST = 0x84; // variables for dragging the form
59 | private const int HTCLIENT = 0x1;
60 | private const int HTCAPTION = 0x2;
61 |
62 | protected override CreateParams CreateParams
63 | {
64 | get
65 | {
66 | m_aeroEnabled = CheckAeroEnabled();
67 |
68 | CreateParams cp = base.CreateParams;
69 | if (!m_aeroEnabled)
70 | cp.ClassStyle |= CS_DROPSHADOW;
71 |
72 | return cp;
73 | }
74 | }
75 |
76 | private bool CheckAeroEnabled()
77 | {
78 | if (Environment.OSVersion.Version.Major >= 6)
79 | {
80 | int enabled = 0;
81 | DwmIsCompositionEnabled(ref enabled);
82 | return (enabled == 1) ? true : false;
83 | }
84 | return false;
85 | }
86 |
87 | protected override void WndProc(ref Message m)
88 | {
89 | switch (m.Msg)
90 | {
91 | case WM_NCPAINT: // box shadow
92 | if (m_aeroEnabled)
93 | {
94 | var v = 2;
95 | DwmSetWindowAttribute(this.Handle, 2, ref v, 4);
96 | MARGINS margins = new MARGINS()
97 | {
98 | bottomHeight = 1,
99 | leftWidth = 1,
100 | rightWidth = 1,
101 | topHeight = 1
102 | };
103 | DwmExtendFrameIntoClientArea(this.Handle, ref margins);
104 |
105 | }
106 | break;
107 | default:
108 | break;
109 | }
110 | base.WndProc(ref m);
111 |
112 | if (m.Msg == WM_NCHITTEST && (int)m.Result == HTCLIENT) // drag the form
113 | m.Result = (IntPtr)HTCAPTION;
114 |
115 | }
116 | #endregion
117 |
118 | #endregion
119 |
120 | #region API Config
121 | public static api KeyAuthApp = new api(
122 | name: "",
123 | ownerid: "",
124 | secret: "",
125 | version: "1.0"
126 | );
127 | #endregion
128 |
129 | #region Exit Button Click
130 | private void siticoneControlBox1_Click(object sender, EventArgs e)
131 | {
132 | foreach (var process in Process.GetProcessesByName("CPR"))
133 | {
134 | process.Kill();
135 | }
136 | Thread.Sleep(2500);
137 | Environment.Exit(0);
138 | }
139 | #endregion
140 |
141 | #region Minimize Button Click
142 | private void siticoneControlBox2_Click(object sender, EventArgs e)
143 | {
144 |
145 | }
146 | #endregion
147 |
148 | #region Notification sound download
149 | Uri sounds = new Uri("https://cdn.discordapp.com/attachments/937072476498837505/951661533824421928/noti.wav");
150 | string file_sound = Path.GetTempPath() + "noti.wav";
151 | #endregion
152 |
153 | #region Form Load
154 | private void Login_Load(object sender, EventArgs e)
155 | {
156 | this.WindowState = FormWindowState.Minimized;
157 | this.Opacity = 0;
158 | LauncherTimer.Start();
159 |
160 | #region Download Notification Sound
161 | if (File.Exists(file_sound))
162 | {
163 | File.Delete(file_sound);
164 | WebClient wc = new WebClient();
165 | wc.DownloadFileAsync(sounds, file_sound);
166 | }
167 | else
168 | {
169 | WebClient wc = new WebClient();
170 | wc.DownloadFileAsync(sounds, file_sound);
171 | }
172 | #endregion
173 |
174 | KeyAuthApp.init();
175 |
176 | #region Invalidver response
177 | if (KeyAuthApp.response.message == "invalidver")
178 | {
179 | if (!string.IsNullOrEmpty(KeyAuthApp.app_data.downloadLink))
180 | {
181 | DialogResult dialogResult = MessageBox.Show("Yes to open file in browser\nNo to download file automatically", "Auto update", MessageBoxButtons.YesNo);
182 | switch (dialogResult)
183 | {
184 | case DialogResult.Yes:
185 | Process.Start(KeyAuthApp.app_data.downloadLink);
186 | Environment.Exit(0);
187 | break;
188 | case DialogResult.No:
189 | WebClient webClient = new WebClient();
190 | string destFile = Application.ExecutablePath;
191 |
192 | string rand = random_string();
193 |
194 | destFile = destFile.Replace(".exe", $"-{rand}.exe");
195 | webClient.DownloadFile(KeyAuthApp.app_data.downloadLink, destFile);
196 |
197 | Process.Start(destFile);
198 | Process.Start(new ProcessStartInfo()
199 | {
200 | Arguments = "/C choice /C Y /N /D Y /T 3 & Del \"" + Application.ExecutablePath + "\"",
201 | WindowStyle = ProcessWindowStyle.Hidden,
202 | CreateNoWindow = true,
203 | FileName = "cmd.exe"
204 | });
205 | Environment.Exit(0);
206 |
207 | break;
208 | default:
209 | MessageBox.Show("Invalid option");
210 | Environment.Exit(0);
211 | break;
212 | }
213 | }
214 | MessageBox.Show("Version of this program does not match the one online. Furthermore, the download link online isn't set. You will need to manually obtain the download link from the developer");
215 | Thread.Sleep(2500);
216 | Environment.Exit(0);
217 | }
218 |
219 | if (!KeyAuthApp.response.success)
220 | {
221 | MessageBox.Show(KeyAuthApp.response.message);
222 | Environment.Exit(0);
223 | }
224 | // if(KeyAuthApp.checkblack())
225 | // {
226 | // MessageBox.Show("user is blacklisted");
227 | // }
228 | // else
229 | // {
230 | // MessageBox.Show("user is not blacklisted");
231 | // }
232 | KeyAuthApp.check();
233 | #endregion
234 | }
235 |
236 | static string random_string()
237 | {
238 | string str = null;
239 |
240 | Random random = new Random();
241 | for (int i = 0; i < 5; i++)
242 | {
243 | str += Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65))).ToString();
244 | }
245 | return str;
246 |
247 | }
248 |
249 | #endregion
250 |
251 | #region Login Button Click
252 | private void LoginBtn_Click(object sender, EventArgs e)
253 | {
254 | KeyAuthApp.login(username.Text, password.Text);
255 | if (KeyAuthApp.response.success)
256 | {
257 | alert.Show("Login Successful", alert.AlertType.success);
258 | MainForm main = new MainForm();
259 | main.Show();
260 | this.Hide();
261 | }
262 | else
263 | status.Text = "Status: " + KeyAuthApp.response.message;
264 | }
265 | #endregion
266 |
267 | #region Initialize Form
268 | public Login()
269 | {
270 | InitializeComponent();
271 |
272 | #region Set Rounded Form Corners
273 | this.FormBorderStyle = FormBorderStyle.None;
274 | this.Region = Region.FromHrgn(CreateRoundRectRgn(0, 0, Width, Height, 10, 10));
275 | #endregion
276 |
277 | #region Set Form Drop Shadow
278 | m_aeroEnabled = false;
279 | #endregion
280 |
281 | }
282 | #endregion
283 |
284 | #region Clean up input boxes
285 |
286 | #region Username
287 | private void username_Enter_1(object sender, EventArgs e)
288 | {
289 | label2.Visible = false;
290 | }
291 | private void username_Leave(object sender, EventArgs e)
292 | {
293 | label2.Visible = true;
294 | }
295 |
296 | #endregion
297 |
298 | #region Password
299 | private void password_Enter(object sender, EventArgs e)
300 | {
301 | password.isPassword = true;
302 | label4.Visible = false;
303 | }
304 | private void password_Leave(object sender, EventArgs e)
305 | {
306 | password.isPassword = true;
307 | label4.Visible = true;
308 | }
309 |
310 | #endregion
311 |
312 | #endregion
313 |
314 | #region Launch Timer
315 | int a = 0;
316 | private void LauncherTimer_Tick(object sender, EventArgs e)
317 | {
318 | a++;
319 | if (a > 10)
320 | {
321 | this.WindowState = FormWindowState.Normal;
322 | fadeintimer.Start();
323 | LauncherTimer.Stop();
324 | }
325 | }
326 | #endregion
327 |
328 | #region Dont have an account label
329 | private void label5_Click(object sender, EventArgs e)
330 | {
331 | this.Hide();
332 | var form1 = new Register();
333 | form1.Closed += (s, args) => this.Close();
334 | form1.Show();
335 | }
336 | private void label5_MouseEnter(object sender, EventArgs e)
337 | {
338 | label5.ForeColor = Color.FromArgb(120, 0, 255);
339 | }
340 | private void label5_MouseLeave(object sender, EventArgs e)
341 | {
342 | label5.ForeColor = Color.FromArgb(125, 137, 149);
343 | }
344 | #endregion
345 |
346 | #region Fade in timer
347 | private void fadeintimer_Tick(object sender, EventArgs e)
348 | {
349 | this.Opacity += 0.05;
350 | }
351 | #endregion
352 | }
353 | }
354 |
355 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Register.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Diagnostics;
3 | using System.Net;
4 | using System.IO;
5 | using System.Threading;
6 | using System.Windows.Forms;
7 | using System.Runtime.InteropServices;
8 | using System.Drawing;
9 |
10 | namespace Cookies_Loader_Base
11 | {
12 | public partial class Register : Form
13 | {
14 | #region Drop Shadow & Rounded Form Corners
15 |
16 | #region DLL Imports
17 |
18 | #region Rounded Form Corners
19 | [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")]
20 | private static extern IntPtr CreateRoundRectRgn
21 | (
22 | int nLeftRect, // x-coordinate of upper-left corner
23 | int nTopRect, // y-coordinate of upper-left corner
24 | int nRightRect, // x-coordinate of lower-right corner
25 | int nBottomRect, // y-coordinate of lower-right corner
26 | int nWidthEllipse, // height of ellipse
27 | int nHeightEllipse // width of ellipse
28 | );
29 | #endregion
30 |
31 | #region Drop Shadow
32 | [DllImport("dwmapi.dll")]
33 | public static extern int DwmExtendFrameIntoClientArea(IntPtr hWnd, ref MARGINS pMarInset);
34 |
35 | [DllImport("dwmapi.dll")]
36 | public static extern int DwmSetWindowAttribute(IntPtr hwnd, int attr, ref int attrValue, int attrSize);
37 |
38 | [DllImport("dwmapi.dll")]
39 | public static extern int DwmIsCompositionEnabled(ref int pfEnabled);
40 | #endregion
41 |
42 | #endregion
43 |
44 | #region Other Shit
45 | private bool m_aeroEnabled; // variables for box shadow
46 | private const int CS_DROPSHADOW = 0x00020000;
47 | private const int WM_NCPAINT = 0x0085;
48 | private const int WM_ACTIVATEAPP = 0x001C;
49 |
50 | public struct MARGINS // struct for box shadow
51 | {
52 | public int leftWidth;
53 | public int rightWidth;
54 | public int topHeight;
55 | public int bottomHeight;
56 | }
57 |
58 | private const int WM_NCHITTEST = 0x84; // variables for dragging the form
59 | private const int HTCLIENT = 0x1;
60 | private const int HTCAPTION = 0x2;
61 |
62 | protected override CreateParams CreateParams
63 | {
64 | get
65 | {
66 | m_aeroEnabled = CheckAeroEnabled();
67 |
68 | CreateParams cp = base.CreateParams;
69 | if (!m_aeroEnabled)
70 | cp.ClassStyle |= CS_DROPSHADOW;
71 |
72 | return cp;
73 | }
74 | }
75 |
76 | private bool CheckAeroEnabled()
77 | {
78 | if (Environment.OSVersion.Version.Major >= 6)
79 | {
80 | int enabled = 0;
81 | DwmIsCompositionEnabled(ref enabled);
82 | return (enabled == 1) ? true : false;
83 | }
84 | return false;
85 | }
86 |
87 | protected override void WndProc(ref Message m)
88 | {
89 | switch (m.Msg)
90 | {
91 | case WM_NCPAINT: // box shadow
92 | if (m_aeroEnabled)
93 | {
94 | var v = 2;
95 | DwmSetWindowAttribute(this.Handle, 2, ref v, 4);
96 | MARGINS margins = new MARGINS()
97 | {
98 | bottomHeight = 1,
99 | leftWidth = 1,
100 | rightWidth = 1,
101 | topHeight = 1
102 | };
103 | DwmExtendFrameIntoClientArea(this.Handle, ref margins);
104 |
105 | }
106 | break;
107 | default:
108 | break;
109 | }
110 | base.WndProc(ref m);
111 |
112 | if (m.Msg == WM_NCHITTEST && (int)m.Result == HTCLIENT) // drag the form
113 | m.Result = (IntPtr)HTCAPTION;
114 |
115 | }
116 | #endregion
117 |
118 | #endregion
119 |
120 | #region API Config
121 | public static api KeyAuthApp = new api(
122 | name: "",
123 | ownerid: "",
124 | secret: "",
125 | version: "1.0"
126 | );
127 | #endregion
128 |
129 | #region Exit Button Click
130 | private void siticoneControlBox1_Click(object sender, EventArgs e)
131 | {
132 | foreach (var process in Process.GetProcessesByName("CPR"))
133 | {
134 | process.Kill();
135 | }
136 | Thread.Sleep(2500);
137 | Environment.Exit(0);
138 | }
139 | #endregion
140 |
141 | #region Minimize Button Click
142 | private void siticoneControlBox2_Click(object sender, EventArgs e)
143 | {
144 |
145 | }
146 | #endregion
147 |
148 | #region Notification sound download
149 | Uri sounds = new Uri("https://cdn.discordapp.com/attachments/937072476498837505/951661533824421928/noti.wav");
150 | string file_sound = Path.GetTempPath() + "noti.wav";
151 | #endregion
152 |
153 | #region Form Load
154 | private void Login_Load(object sender, EventArgs e)
155 | {
156 | this.WindowState = FormWindowState.Minimized;
157 | this.Opacity = 0;
158 | LauncherTimer.Start();
159 |
160 | #region Download Notification Sound
161 | if (File.Exists(file_sound))
162 | {
163 | File.Delete(file_sound);
164 | WebClient wc = new WebClient();
165 | wc.DownloadFileAsync(sounds, file_sound);
166 | }
167 | else
168 | {
169 | WebClient wc = new WebClient();
170 | wc.DownloadFileAsync(sounds, file_sound);
171 | }
172 | #endregion
173 |
174 | KeyAuthApp.init();
175 |
176 | #region Invalidver response
177 | if (KeyAuthApp.response.message == "invalidver")
178 | {
179 | if (!string.IsNullOrEmpty(KeyAuthApp.app_data.downloadLink))
180 | {
181 | DialogResult dialogResult = MessageBox.Show("Yes to open file in browser\nNo to download file automatically", "Auto update", MessageBoxButtons.YesNo);
182 | switch (dialogResult)
183 | {
184 | case DialogResult.Yes:
185 | Process.Start(KeyAuthApp.app_data.downloadLink);
186 | Environment.Exit(0);
187 | break;
188 | case DialogResult.No:
189 | WebClient webClient = new WebClient();
190 | string destFile = Application.ExecutablePath;
191 |
192 | string rand = random_string();
193 |
194 | destFile = destFile.Replace(".exe", $"-{rand}.exe");
195 | webClient.DownloadFile(KeyAuthApp.app_data.downloadLink, destFile);
196 |
197 | Process.Start(destFile);
198 | Process.Start(new ProcessStartInfo()
199 | {
200 | Arguments = "/C choice /C Y /N /D Y /T 3 & Del \"" + Application.ExecutablePath + "\"",
201 | WindowStyle = ProcessWindowStyle.Hidden,
202 | CreateNoWindow = true,
203 | FileName = "cmd.exe"
204 | });
205 | Environment.Exit(0);
206 |
207 | break;
208 | default:
209 | MessageBox.Show("Invalid option");
210 | Environment.Exit(0);
211 | break;
212 | }
213 | }
214 | MessageBox.Show("Version of this program does not match the one online. Furthermore, the download link online isn't set. You will need to manually obtain the download link from the developer");
215 | Thread.Sleep(2500);
216 | Environment.Exit(0);
217 | }
218 |
219 | if (!KeyAuthApp.response.success)
220 | {
221 | MessageBox.Show(KeyAuthApp.response.message);
222 | Environment.Exit(0);
223 | }
224 | // if(KeyAuthApp.checkblack())
225 | // {
226 | // MessageBox.Show("user is blacklisted");
227 | // }
228 | // else
229 | // {
230 | // MessageBox.Show("user is not blacklisted");
231 | // }
232 | KeyAuthApp.check();
233 | #endregion
234 | }
235 |
236 | static string random_string()
237 | {
238 | string str = null;
239 |
240 | Random random = new Random();
241 | for (int i = 0; i < 5; i++)
242 | {
243 | str += Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65))).ToString();
244 | }
245 | return str;
246 |
247 | }
248 |
249 | #endregion
250 |
251 | #region Register Button Click
252 | private void RgstrBtn_Click(object sender, EventArgs e)
253 | {
254 | KeyAuthApp.register(username.Text, password.Text, key.Text);
255 | if (KeyAuthApp.response.success)
256 | {
257 | alert.Show("Register Successful", alert.AlertType.success);
258 | MainForm main = new MainForm();
259 | main.Show();
260 | this.Hide();
261 | }
262 | else
263 | status.Text = "Status: " + KeyAuthApp.response.message;
264 | }
265 | #endregion
266 |
267 | #region Initialize Form
268 | public Register()
269 | {
270 | InitializeComponent();
271 |
272 | #region Set Rounded Form Corners
273 | this.FormBorderStyle = FormBorderStyle.None;
274 | this.Region = Region.FromHrgn(CreateRoundRectRgn(0, 0, Width, Height, 10, 10));
275 | #endregion
276 |
277 | #region Set Form Drop Shadow
278 | m_aeroEnabled = false;
279 | #endregion
280 |
281 | }
282 | #endregion
283 |
284 | #region Clean up input boxes
285 |
286 | #region Username
287 | private void username_Enter_1(object sender, EventArgs e)
288 | {
289 | label2.Visible = false;
290 | }
291 | private void username_Leave(object sender, EventArgs e)
292 | {
293 | label2.Visible = true;
294 | }
295 |
296 | #endregion
297 |
298 | #region Password
299 | private void password_Enter(object sender, EventArgs e)
300 | {
301 | password.isPassword = true;
302 | label4.Visible = false;
303 | }
304 | private void password_Leave(object sender, EventArgs e)
305 | {
306 | password.isPassword = true;
307 | label4.Visible = true;
308 | }
309 |
310 | #endregion
311 |
312 | #region Key
313 | private void key_Enter(object sender, EventArgs e)
314 | {
315 | label3.Visible = false;
316 | }
317 | private void key_Leave(object sender, EventArgs e)
318 | {
319 | label3.Visible = true;
320 | }
321 |
322 | #endregion
323 |
324 | #endregion
325 |
326 | #region Launch Timer
327 | int a = 0;
328 | private void LauncherTimer_Tick(object sender, EventArgs e)
329 | {
330 | a++;
331 | if (a > 10)
332 | {
333 | this.WindowState = FormWindowState.Normal;
334 | fadeintimer.Start();
335 | LauncherTimer.Stop();
336 | }
337 | }
338 | #endregion
339 |
340 | #region Already have an account label
341 | private void label5_Click(object sender, EventArgs e)
342 | {
343 | this.Hide();
344 | var form1 = new Login();
345 | form1.Closed += (s, args) => this.Close();
346 | form1.Show();
347 | }
348 | private void label5_MouseEnter(object sender, EventArgs e)
349 | {
350 | label5.ForeColor = Color.FromArgb(120, 0, 255);
351 | }
352 | private void label5_MouseLeave(object sender, EventArgs e)
353 | {
354 | label5.ForeColor = Color.FromArgb(125, 137, 149);
355 | }
356 | #endregion
357 |
358 | private void fadeintimer_Tick(object sender, EventArgs e)
359 | {
360 | this.Opacity += 0.05;
361 | }
362 | }
363 | }
364 |
365 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/MainForm.resx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 | text/microsoft-resx
110 |
111 |
112 | 2.0
113 |
114 |
115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
119 |
120 |
121 | 17, 17
122 |
123 |
124 |
125 |
126 | AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMMOAADDDgAAAAAAAAAA
127 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZxSAAGcUcEBnJIKAZySGkGckipBnJI1QZy
128 | SO4Gckj6BnJI+gZySO4GckjVBnJIqQZySGkGckgoBnFHBAZxSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
129 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZyRwAGckcDBnJINQZySJUGckjdBnJI+wZy
130 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI+wZySN0GckiVBnJINQZyRwMGckcAAAAAAAAA
131 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd0SAAGcUgABnJIGQZySIYGckjoBnJI/wZy
132 | SP8Gckj/BnJI/wZySP8Gckj/CoFS/wh6Tf8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8GckjoBnJIhgZy
133 | SBkGcUgAB3RIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcUcACHNJAAZySDQGcki/BnJI/gZy
134 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZxR/8LhlX/C4RU/wZxR/8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
135 | SP8Gckj+BnJIvwZySDQIc0kABXFHAAAAAAAAAAAAAAAAAAAAAAAAAAAABHBGAAd0SgAGcUhABnJI1gZy
136 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnFI/wh7Tv8Lh1X/BXJI/wZzSP8Gc0j/BXNI/wVz
137 | SP8Gckj/BnJI/wZySP8Gckj/BnJI1gZxSEAHdEoABHBGAAAAAAAAAAAAAAAAAAZxSAAGckgABnJINQZy
138 | SNYGckj/BnJI/wZySP8Gckj/BnJI/wVzSP8Gc0j/B3FH/wdvR/8Hb0f/CXhM/xF4T/8PXkD/DWRC/w9g
139 | Qf8TWD7/DmNC/wdwR/8Fc0j/BnJI/wZySP8Gckj/BnJI1gZySDUGckgABnFIAAAAAAAAAAAABnJIAAZy
140 | SBkGcki/BnJI/wZySP8Gckj/BnJI/wZzSP8JbEX/E1c9/xpKOP8fPzP/ITwy/yA+M/8fQjX/JjUw/yks
141 | LP8nLy3/KC0s/yoqK/8oLy3/HkI1/xBdP/8HcEf/BnJI/wZySP8Gckj/BnJIvwZySBkGckgAAAAAAAZy
142 | RwAGckUCBnJIhgZySP8Gckj/BnJI/wZySP8HcUf/DWVD/x5CNP8qKiv/Kygq/ysnKv8rKCr/Kykq/yop
143 | Kv8qKSr/Kykr/yspK/8rKSv/Kior/yoqK/8rKSv/KC0s/xJaPv8Gc0j/BnJI/wZySP8Gckj/BnJIhgZy
144 | RQIGckcABnJIAAZySDYGckjnBnJI/wZySP8Gckj/CG1G/xhNOf8nMC3/KSws/ycyL/8mPDT/J0c7/yk7
145 | Nf8qLS3/Jzgy/yU+Nf8jQTb/IltD/yRUQP8pMS//Kior/yoqK/8qKSv/GE45/wV0SP8Gckj/BnJI/wZy
146 | SP8GckjnBnJINgZySAAGcUgDBnJIlAZySP8Gckj/BnNI/w5hQf8iOzH/Kiss/yY2Mf8WWD7/DWZD/wpu
147 | R/8Phlf/GZJh/x1/WP8ZZ0j/EHZN/wyMVv8MmFz/C4JR/xpTPf8qLi7/Kior/yopK/8hOzL/DWVD/wZz
148 | SP8Gckj/BnJI/wZySP8GckiUBnFIAwZySCgGckjcBnJI/wZzSP8LaET/Izgx/yY2MP8ZUTz/EWpH/wqB
149 | Uv8LiFb/DIlX/wuHVv8Milf/D5dg/xGlaP8LmFz/CYhT/wiBUP8HgE//EXRL/yY8M/8qKCr/Kior/yop
150 | K/8lMy//FFU8/wdwR/8Gckj/BnJI/wZySNwGckgoBnJIaQZySPoGckj/BnJI/xpKOP8oMC7/HFZA/xiH
151 | W/8Wr3H/Gbd2/xq6ef8buXj/H4xg/yNjSf8fZ0r/G4JY/w+NWP8KjFb/Cpdb/wylYv8MqGT/FoBS/yVB
152 | Nv8qKSv/Kior/yopK/8nLy3/DWRC/wZzSP8Gckj/BnJI+gZySGkGckipBnJI/wZySP8Ka0X/JDUv/yk/
153 | N/8kf1r/Hbh5/xy+fP8bvXv/Grt5/x2SY/8nPzb/Kigq/ygsK/8oMC7/JTgx/yBMOv8WW0D/EXRL/xCQ
154 | WP8QnF7/F4JT/yY/Nf8qKiv/Ki0s/yJBNf8KbEb/BnJI/wZySP8Gckj/BnJIqQZySNUGckj/BXNI/w9g
155 | Qf8pLS3/JU0+/xiDWP8Um2X/E59m/xCYYf8Ohlb/H0g5/yoqK/8qKiv/GFA6/xiAVv8eXkT/ITsy/yc0
156 | L/8nMi7/JjYw/yY7M/8mPDT/KDMv/ygvLf8WWj//C3dL/wd2Sv8Gckj/BnJI/wZySP8GckjVBnJI7gZy
157 | SP8Fc0j/EF5A/ykuLf8dUD3/C2pG/wprRv8GcUj/CoBR/xp+Vv8pMi//Kikr/yooKv8eUz7/FrNy/w6j
158 | Y/8Idkr/EHNK/x1kRf8nOTL/KSws/x5GN/8VUzv/D19A/wZxR/8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
159 | SO4Gckj6BnJI/wZzSP8NZUP/JzEu/x9KOv8OZ0X/FVtA/w+HV/8XsXL/H55q/ylDOf8qKSr/Kikq/yg6
160 | NP8cn2n/D6Zl/xBrRv8dRjb/KDMv/yorLP8qKSv/HVU+/wiDUP8GdEj/BnJI/wZySP8Gckj/BnJI/wZy
161 | SP8Gckj/BnJI+gZySPoGckj/BnJI/whvR/8hPDL/Jzcy/xBjQ/8bYEX/HKpw/xu+e/8dsHT/JmNK/yor
162 | LP8qKiv/Kikr/yVTQP8gW0L/KDAu/yopKv8qKyz/Kior/yooKv8gVz//DaFh/wiBUP8GcUj/BnJI/wZy
163 | SP8Gckj/BnJI/wZySP8Gckj6BnJI7gZySP8Gckj/BnNI/xZRO/8oLy7/FWRF/xuPYP8eq3H/G717/xu5
164 | ef8Vg1f/ITwz/yopK/8qKiv/Kigq/yooKv8nNjD/KDAt/ygwLv8qKiv/Kigq/yFPPP8OpmP/C5td/wd3
165 | Sv8Gckj/BnJI/wZySP8Gckj/BnJI/wZySO4GckjVBnJI/wZySP8Gc0j/C2dE/yUzLv8nTj//HqNt/x6t
166 | cv8aunj/Epxk/wd3S/8OYUH/JTMu/yooKv8nPjX/IVQ+/xZ7T/8SYUL/HEc3/yoqK/8qKCr/IFM+/w2n
167 | Y/8NqGT/CYtV/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI1QZySKkGckj/BnJI/wZySP8Gckj/GE05/yo0
168 | Mf8iiF7/F69x/w2NWv8HdEr/BnJI/wZySP8SZET/Jkc6/yB2U/8Qp2X/DKNh/wZ9Tf8XUTv/Kikr/yoo
169 | Kv8dUjz/DJ1e/w2oZP8Mn1//B3hL/wZySP8Gckj/BnJI/wZySP8GckipBnJIaQZySPoGckj/BnJI/wZz
170 | Sf8SflL/KDo0/yRLPP8Md03/BnJI/wZySP8Gckj/BnFH/wuGVf8cqW//HKVs/w+rZ/8MpGL/B39P/xlN
171 | Of8rKSv/Kykr/xlNOf8GeUv/CYhT/wubXf8JiFP/BnJI/wZySP8Gckj/BnJI+gZySGkGckgoBnJI3AZy
172 | SP8Gckj/B3VK/wuGVf8VWT//KC0s/xpNOv8IcEf/BnJI/wZySP8GcUf/DIZW/xq6eP8Zu3j/D6tn/wyl
173 | Yv8Jfk7/HUU2/yspK/8qKiv/FFU8/wVzSP8GcUj/BnZK/wh/T/8GdEn/BnJI/wZySP8GckjcBnJIKAZx
174 | SAMGckiUBnJI/wZySP8Gckj/BnJI/wdxR/8ZTDn/KS4t/xxNO/8JbUf/BnNI/wZxR/8KglP/Gbd2/xm7
175 | eP8PrGf/DaNh/xdhQ/8nMC7/Kykr/ygvLf8OYUH/BnNI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
176 | SJQGcUgDBnJIAAZySDYGckjnBnJI/wZySP8Gckj/BnJI/whtRv8dQzX/KS4t/x9HOP8WW0H/CmxG/wl6
177 | Tf8YrHD/HK5y/xSYX/8YfFD/JzYx/yopK/8hOzL/EVs+/wdxSP8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
178 | SP8GckjnBnJINgZySAAGckcABnJFAgZySIYGckj/BnJI/wZySP8Gckj/BnNI/wlsRf8ZTDn/JTMv/yku
179 | Lf8lOjP/IEQ3/yZQQP8pQjn/KTYx/ykwLv8nMC3/Gkk3/wpqRP8Fc0j/BnJI/wZySP8Gckj/BnJI/wZy
180 | SP8Gckj/BnJI/wZySIYGckUCBnJHAAAAAAAGckgABnJIGQZySL8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
181 | SP8LaET/FFU8/x1DNf8iOTH/JDsz/yNbRP8acUz/FmFC/w5hQf8GcUf/BnJI/wZySP8Gckj/BnJI/wZy
182 | SP8Gckj/BnJI/wZySP8Gcki/BnJIGQZySAAAAAAAAAAAAAZxSAAGckgABnJINQZySNYGckj/BnJI/wZy
183 | SP8Gckj/BnJI/wZzSP8Fc0j/BnFI/whtRv8LeE3/F7Fx/w6oZf8GfU3/BXJI/wZySP8Gckj/BnJI/wZy
184 | SP8Gckj/BnJI/wZySP8Gckj/BnJI1gZySDUGckgABnFIAAAAAAAAAAAAAAAAAARwRgAHdEoABnFIQAZy
185 | SNYGckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI/wd0Sf8RnmX/DZpe/wZ0Sf8Gckj/BnJI/wZy
186 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySNYGcUhAB3RKAARwRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAVx
187 | RwAIc0kABnJINAZySL8Gckj+BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnFH/wuJVv8KiVb/BnFH/wZy
188 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP4Gcki/BnJINAhzSQAFcUcAAAAAAAAAAAAAAAAAAAAAAAAA
189 | AAAAAAAAAAAAAAd0SAAGcUgABnJIGQZySIYGckjoBnJI/wZySP8Gckj/BnJI/wZySP8Gckj/CHlN/wd5
190 | TP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8GckjoBnJIhgZySBkGcUgAB3RIAAAAAAAAAAAAAAAAAAAA
191 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGckcABnJHAwZySDUGckiVBnJI3QZySPsGckj/BnJI/wZy
192 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySPsGckjdBnJIlQZySDUGckcDBnJHAAAAAAAAAAAAAAAAAAAA
193 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnFIAAZxRwQGckgoBnJIaQZy
194 | SKkGckjVBnJI7gZySPoGckj6BnJI7gZySNUGckipBnJIaQZySCgGcUcEBnFIAAAAAAAAAAAAAAAAAAAA
195 | AAAAAAAAAAAAAAAAAAAAAAAA/4AB//4AAH/8AAA/+AAAH/AAAA/gAAAHwAAAA4AAAAGAAAABAAAAAAAA
196 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAABgAAAAcAA
197 | AAPgAAAH8AAAD/gAAB/8AAA//gAAf/+AAf8=
198 |
199 |
200 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/LoadingForm.resx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 | text/microsoft-resx
110 |
111 |
112 | 2.0
113 |
114 |
115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
119 |
120 |
121 | 17, 17
122 |
123 |
124 | 104, 17
125 |
126 |
127 | 191, 17
128 |
129 |
130 | 278, 17
131 |
132 |
133 | 365, 17
134 |
135 |
136 | 452, 17
137 |
138 |
139 | 539, 17
140 |
141 |
142 |
143 |
144 | AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMMOAADDDgAAAAAAAAAA
145 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZxSAAGcUcEBnJIKAZySGkGckipBnJI1QZy
146 | SO4Gckj6BnJI+gZySO4GckjVBnJIqQZySGkGckgoBnFHBAZxSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
147 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZyRwAGckcDBnJINQZySJUGckjdBnJI+wZy
148 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI+wZySN0GckiVBnJINQZyRwMGckcAAAAAAAAA
149 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd0SAAGcUgABnJIGQZySIYGckjoBnJI/wZy
150 | SP8Gckj/BnJI/wZySP8Gckj/CoFS/wh6Tf8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8GckjoBnJIhgZy
151 | SBkGcUgAB3RIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcUcACHNJAAZySDQGcki/BnJI/gZy
152 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZxR/8LhlX/C4RU/wZxR/8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
153 | SP8Gckj+BnJIvwZySDQIc0kABXFHAAAAAAAAAAAAAAAAAAAAAAAAAAAABHBGAAd0SgAGcUhABnJI1gZy
154 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnFI/wh7Tv8Lh1X/BXJI/wZzSP8Gc0j/BXNI/wVz
155 | SP8Gckj/BnJI/wZySP8Gckj/BnJI1gZxSEAHdEoABHBGAAAAAAAAAAAAAAAAAAZxSAAGckgABnJINQZy
156 | SNYGckj/BnJI/wZySP8Gckj/BnJI/wVzSP8Gc0j/B3FH/wdvR/8Hb0f/CXhM/xF4T/8PXkD/DWRC/w9g
157 | Qf8TWD7/DmNC/wdwR/8Fc0j/BnJI/wZySP8Gckj/BnJI1gZySDUGckgABnFIAAAAAAAAAAAABnJIAAZy
158 | SBkGcki/BnJI/wZySP8Gckj/BnJI/wZzSP8JbEX/E1c9/xpKOP8fPzP/ITwy/yA+M/8fQjX/JjUw/yks
159 | LP8nLy3/KC0s/yoqK/8oLy3/HkI1/xBdP/8HcEf/BnJI/wZySP8Gckj/BnJIvwZySBkGckgAAAAAAAZy
160 | RwAGckUCBnJIhgZySP8Gckj/BnJI/wZySP8HcUf/DWVD/x5CNP8qKiv/Kygq/ysnKv8rKCr/Kykq/yop
161 | Kv8qKSr/Kykr/yspK/8rKSv/Kior/yoqK/8rKSv/KC0s/xJaPv8Gc0j/BnJI/wZySP8Gckj/BnJIhgZy
162 | RQIGckcABnJIAAZySDYGckjnBnJI/wZySP8Gckj/CG1G/xhNOf8nMC3/KSws/ycyL/8mPDT/J0c7/yk7
163 | Nf8qLS3/Jzgy/yU+Nf8jQTb/IltD/yRUQP8pMS//Kior/yoqK/8qKSv/GE45/wV0SP8Gckj/BnJI/wZy
164 | SP8GckjnBnJINgZySAAGcUgDBnJIlAZySP8Gckj/BnNI/w5hQf8iOzH/Kiss/yY2Mf8WWD7/DWZD/wpu
165 | R/8Phlf/GZJh/x1/WP8ZZ0j/EHZN/wyMVv8MmFz/C4JR/xpTPf8qLi7/Kior/yopK/8hOzL/DWVD/wZz
166 | SP8Gckj/BnJI/wZySP8GckiUBnFIAwZySCgGckjcBnJI/wZzSP8LaET/Izgx/yY2MP8ZUTz/EWpH/wqB
167 | Uv8LiFb/DIlX/wuHVv8Milf/D5dg/xGlaP8LmFz/CYhT/wiBUP8HgE//EXRL/yY8M/8qKCr/Kior/yop
168 | K/8lMy//FFU8/wdwR/8Gckj/BnJI/wZySNwGckgoBnJIaQZySPoGckj/BnJI/xpKOP8oMC7/HFZA/xiH
169 | W/8Wr3H/Gbd2/xq6ef8buXj/H4xg/yNjSf8fZ0r/G4JY/w+NWP8KjFb/Cpdb/wylYv8MqGT/FoBS/yVB
170 | Nv8qKSv/Kior/yopK/8nLy3/DWRC/wZzSP8Gckj/BnJI+gZySGkGckipBnJI/wZySP8Ka0X/JDUv/yk/
171 | N/8kf1r/Hbh5/xy+fP8bvXv/Grt5/x2SY/8nPzb/Kigq/ygsK/8oMC7/JTgx/yBMOv8WW0D/EXRL/xCQ
172 | WP8QnF7/F4JT/yY/Nf8qKiv/Ki0s/yJBNf8KbEb/BnJI/wZySP8Gckj/BnJIqQZySNUGckj/BXNI/w9g
173 | Qf8pLS3/JU0+/xiDWP8Um2X/E59m/xCYYf8Ohlb/H0g5/yoqK/8qKiv/GFA6/xiAVv8eXkT/ITsy/yc0
174 | L/8nMi7/JjYw/yY7M/8mPDT/KDMv/ygvLf8WWj//C3dL/wd2Sv8Gckj/BnJI/wZySP8GckjVBnJI7gZy
175 | SP8Fc0j/EF5A/ykuLf8dUD3/C2pG/wprRv8GcUj/CoBR/xp+Vv8pMi//Kikr/yooKv8eUz7/FrNy/w6j
176 | Y/8Idkr/EHNK/x1kRf8nOTL/KSws/x5GN/8VUzv/D19A/wZxR/8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
177 | SO4Gckj6BnJI/wZzSP8NZUP/JzEu/x9KOv8OZ0X/FVtA/w+HV/8XsXL/H55q/ylDOf8qKSr/Kikq/yg6
178 | NP8cn2n/D6Zl/xBrRv8dRjb/KDMv/yorLP8qKSv/HVU+/wiDUP8GdEj/BnJI/wZySP8Gckj/BnJI/wZy
179 | SP8Gckj/BnJI+gZySPoGckj/BnJI/whvR/8hPDL/Jzcy/xBjQ/8bYEX/HKpw/xu+e/8dsHT/JmNK/yor
180 | LP8qKiv/Kikr/yVTQP8gW0L/KDAu/yopKv8qKyz/Kior/yooKv8gVz//DaFh/wiBUP8GcUj/BnJI/wZy
181 | SP8Gckj/BnJI/wZySP8Gckj6BnJI7gZySP8Gckj/BnNI/xZRO/8oLy7/FWRF/xuPYP8eq3H/G717/xu5
182 | ef8Vg1f/ITwz/yopK/8qKiv/Kigq/yooKv8nNjD/KDAt/ygwLv8qKiv/Kigq/yFPPP8OpmP/C5td/wd3
183 | Sv8Gckj/BnJI/wZySP8Gckj/BnJI/wZySO4GckjVBnJI/wZySP8Gc0j/C2dE/yUzLv8nTj//HqNt/x6t
184 | cv8aunj/Epxk/wd3S/8OYUH/JTMu/yooKv8nPjX/IVQ+/xZ7T/8SYUL/HEc3/yoqK/8qKCr/IFM+/w2n
185 | Y/8NqGT/CYtV/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI1QZySKkGckj/BnJI/wZySP8Gckj/GE05/yo0
186 | Mf8iiF7/F69x/w2NWv8HdEr/BnJI/wZySP8SZET/Jkc6/yB2U/8Qp2X/DKNh/wZ9Tf8XUTv/Kikr/yoo
187 | Kv8dUjz/DJ1e/w2oZP8Mn1//B3hL/wZySP8Gckj/BnJI/wZySP8GckipBnJIaQZySPoGckj/BnJI/wZz
188 | Sf8SflL/KDo0/yRLPP8Md03/BnJI/wZySP8Gckj/BnFH/wuGVf8cqW//HKVs/w+rZ/8MpGL/B39P/xlN
189 | Of8rKSv/Kykr/xlNOf8GeUv/CYhT/wubXf8JiFP/BnJI/wZySP8Gckj/BnJI+gZySGkGckgoBnJI3AZy
190 | SP8Gckj/B3VK/wuGVf8VWT//KC0s/xpNOv8IcEf/BnJI/wZySP8GcUf/DIZW/xq6eP8Zu3j/D6tn/wyl
191 | Yv8Jfk7/HUU2/yspK/8qKiv/FFU8/wVzSP8GcUj/BnZK/wh/T/8GdEn/BnJI/wZySP8GckjcBnJIKAZx
192 | SAMGckiUBnJI/wZySP8Gckj/BnJI/wdxR/8ZTDn/KS4t/xxNO/8JbUf/BnNI/wZxR/8KglP/Gbd2/xm7
193 | eP8PrGf/DaNh/xdhQ/8nMC7/Kykr/ygvLf8OYUH/BnNI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
194 | SJQGcUgDBnJIAAZySDYGckjnBnJI/wZySP8Gckj/BnJI/whtRv8dQzX/KS4t/x9HOP8WW0H/CmxG/wl6
195 | Tf8YrHD/HK5y/xSYX/8YfFD/JzYx/yopK/8hOzL/EVs+/wdxSP8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
196 | SP8GckjnBnJINgZySAAGckcABnJFAgZySIYGckj/BnJI/wZySP8Gckj/BnNI/wlsRf8ZTDn/JTMv/yku
197 | Lf8lOjP/IEQ3/yZQQP8pQjn/KTYx/ykwLv8nMC3/Gkk3/wpqRP8Fc0j/BnJI/wZySP8Gckj/BnJI/wZy
198 | SP8Gckj/BnJI/wZySIYGckUCBnJHAAAAAAAGckgABnJIGQZySL8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
199 | SP8LaET/FFU8/x1DNf8iOTH/JDsz/yNbRP8acUz/FmFC/w5hQf8GcUf/BnJI/wZySP8Gckj/BnJI/wZy
200 | SP8Gckj/BnJI/wZySP8Gcki/BnJIGQZySAAAAAAAAAAAAAZxSAAGckgABnJINQZySNYGckj/BnJI/wZy
201 | SP8Gckj/BnJI/wZzSP8Fc0j/BnFI/whtRv8LeE3/F7Fx/w6oZf8GfU3/BXJI/wZySP8Gckj/BnJI/wZy
202 | SP8Gckj/BnJI/wZySP8Gckj/BnJI1gZySDUGckgABnFIAAAAAAAAAAAAAAAAAARwRgAHdEoABnFIQAZy
203 | SNYGckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI/wd0Sf8RnmX/DZpe/wZ0Sf8Gckj/BnJI/wZy
204 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySNYGcUhAB3RKAARwRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAVx
205 | RwAIc0kABnJINAZySL8Gckj+BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnFH/wuJVv8KiVb/BnFH/wZy
206 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP4Gcki/BnJINAhzSQAFcUcAAAAAAAAAAAAAAAAAAAAAAAAA
207 | AAAAAAAAAAAAAAd0SAAGcUgABnJIGQZySIYGckjoBnJI/wZySP8Gckj/BnJI/wZySP8Gckj/CHlN/wd5
208 | TP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8GckjoBnJIhgZySBkGcUgAB3RIAAAAAAAAAAAAAAAAAAAA
209 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGckcABnJHAwZySDUGckiVBnJI3QZySPsGckj/BnJI/wZy
210 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySPsGckjdBnJIlQZySDUGckcDBnJHAAAAAAAAAAAAAAAAAAAA
211 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnFIAAZxRwQGckgoBnJIaQZy
212 | SKkGckjVBnJI7gZySPoGckj6BnJI7gZySNUGckipBnJIaQZySCgGcUcEBnFIAAAAAAAAAAAAAAAAAAAA
213 | AAAAAAAAAAAAAAAAAAAAAAAA/4AB//4AAH/8AAA/+AAAH/AAAA/gAAAHwAAAA4AAAAGAAAABAAAAAAAA
214 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAABgAAAAcAA
215 | AAPgAAAH8AAAD/gAAB/8AAA//gAAf/+AAf8=
216 |
217 |
218 |
219 | 699, 17
220 |
221 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/MainForm.Designer.cs:
--------------------------------------------------------------------------------
1 |
2 | namespace Cookies_Loader_Base
3 | {
4 | partial class MainForm
5 | {
6 | ///
7 | /// Required designer variable.
8 | ///
9 | private System.ComponentModel.IContainer components = null;
10 |
11 | ///
12 | /// Clean up any resources being used.
13 | ///
14 | /// true if managed resources should be disposed; otherwise, false.
15 | protected override void Dispose(bool disposing)
16 | {
17 | if (disposing && (components != null))
18 | {
19 | components.Dispose();
20 | }
21 | base.Dispose(disposing);
22 | }
23 |
24 | #region Windows Form Designer generated code
25 |
26 | ///
27 | /// Required method for Designer support - do not modify
28 | /// the contents of this method with the code editor.
29 | ///
30 | private void InitializeComponent()
31 | {
32 | this.components = new System.ComponentModel.Container();
33 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
34 | this.progressBar1 = new System.Windows.Forms.ProgressBar();
35 | this.bunifuDragControl1 = new Bunifu.Framework.UI.BunifuDragControl(this.components);
36 | this.panel4 = new System.Windows.Forms.Panel();
37 | this.siticoneControlBox1 = new Siticone.UI.WinForms.SiticoneControlBox();
38 | this.siticoneControlBox2 = new Siticone.UI.WinForms.SiticoneControlBox();
39 | this.LoginBtn = new Siticone.UI.WinForms.SiticoneRoundedButton();
40 | this.siticoneRoundedButton1 = new Siticone.UI.WinForms.SiticoneRoundedButton();
41 | this.siticoneRoundedButton2 = new Siticone.UI.WinForms.SiticoneRoundedButton();
42 | this.label3 = new System.Windows.Forms.Label();
43 | this.panel1 = new System.Windows.Forms.Panel();
44 | this.panel3 = new System.Windows.Forms.Panel();
45 | this.pictureBox11 = new System.Windows.Forms.PictureBox();
46 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
47 | this.SuspendLayout();
48 | //
49 | // progressBar1
50 | //
51 | this.progressBar1.ForeColor = System.Drawing.Color.HotPink;
52 | this.progressBar1.Location = new System.Drawing.Point(14, 410);
53 | this.progressBar1.Name = "progressBar1";
54 | this.progressBar1.Size = new System.Drawing.Size(340, 28);
55 | this.progressBar1.TabIndex = 13;
56 | //
57 | // bunifuDragControl1
58 | //
59 | this.bunifuDragControl1.Fixed = true;
60 | this.bunifuDragControl1.Horizontal = true;
61 | this.bunifuDragControl1.TargetControl = this.panel4;
62 | this.bunifuDragControl1.Vertical = true;
63 | //
64 | // panel4
65 | //
66 | this.panel4.Location = new System.Drawing.Point(2, 0);
67 | this.panel4.Name = "panel4";
68 | this.panel4.Size = new System.Drawing.Size(367, 46);
69 | this.panel4.TabIndex = 64;
70 | //
71 | // siticoneControlBox1
72 | //
73 | this.siticoneControlBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
74 | this.siticoneControlBox1.BackColor = System.Drawing.Color.Transparent;
75 | this.siticoneControlBox1.BorderColor = System.Drawing.Color.Transparent;
76 | this.siticoneControlBox1.BorderRadius = 10;
77 | this.siticoneControlBox1.FillColor = System.Drawing.Color.Transparent;
78 | this.siticoneControlBox1.HoveredState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(17)))), ((int)(((byte)(35)))));
79 | this.siticoneControlBox1.HoveredState.IconColor = System.Drawing.Color.White;
80 | this.siticoneControlBox1.HoveredState.Parent = this.siticoneControlBox1;
81 | this.siticoneControlBox1.IconColor = System.Drawing.Color.White;
82 | this.siticoneControlBox1.Location = new System.Drawing.Point(315, 7);
83 | this.siticoneControlBox1.Name = "siticoneControlBox1";
84 | this.siticoneControlBox1.ShadowDecoration.Parent = this.siticoneControlBox1;
85 | this.siticoneControlBox1.Size = new System.Drawing.Size(45, 29);
86 | this.siticoneControlBox1.TabIndex = 17;
87 | this.siticoneControlBox1.Click += new System.EventHandler(this.siticoneControlBox1_Click);
88 | //
89 | // siticoneControlBox2
90 | //
91 | this.siticoneControlBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
92 | this.siticoneControlBox2.BackColor = System.Drawing.Color.Transparent;
93 | this.siticoneControlBox2.BorderRadius = 10;
94 | this.siticoneControlBox2.ControlBoxType = Siticone.UI.WinForms.Enums.ControlBoxType.MinimizeBox;
95 | this.siticoneControlBox2.FillColor = System.Drawing.Color.Transparent;
96 | this.siticoneControlBox2.HoveredState.Parent = this.siticoneControlBox2;
97 | this.siticoneControlBox2.IconColor = System.Drawing.Color.White;
98 | this.siticoneControlBox2.Location = new System.Drawing.Point(264, 7);
99 | this.siticoneControlBox2.Name = "siticoneControlBox2";
100 | this.siticoneControlBox2.ShadowDecoration.Parent = this.siticoneControlBox2;
101 | this.siticoneControlBox2.Size = new System.Drawing.Size(45, 29);
102 | this.siticoneControlBox2.TabIndex = 18;
103 | //
104 | // LoginBtn
105 | //
106 | this.LoginBtn.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
107 | this.LoginBtn.BorderThickness = 1;
108 | this.LoginBtn.CheckedState.Parent = this.LoginBtn;
109 | this.LoginBtn.CustomImages.Parent = this.LoginBtn;
110 | this.LoginBtn.FillColor = System.Drawing.Color.Transparent;
111 | this.LoginBtn.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
112 | this.LoginBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
113 | this.LoginBtn.HoveredState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
114 | this.LoginBtn.HoveredState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
115 | this.LoginBtn.HoveredState.Parent = this.LoginBtn;
116 | this.LoginBtn.Location = new System.Drawing.Point(65, 155);
117 | this.LoginBtn.Name = "LoginBtn";
118 | this.LoginBtn.ShadowDecoration.Parent = this.LoginBtn;
119 | this.LoginBtn.Size = new System.Drawing.Size(236, 40);
120 | this.LoginBtn.TabIndex = 50;
121 | this.LoginBtn.Text = "Button 1";
122 | this.LoginBtn.Click += new System.EventHandler(this.LoginBtn_Click);
123 | //
124 | // siticoneRoundedButton1
125 | //
126 | this.siticoneRoundedButton1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
127 | this.siticoneRoundedButton1.BorderThickness = 1;
128 | this.siticoneRoundedButton1.CheckedState.Parent = this.siticoneRoundedButton1;
129 | this.siticoneRoundedButton1.CustomImages.Parent = this.siticoneRoundedButton1;
130 | this.siticoneRoundedButton1.FillColor = System.Drawing.Color.Transparent;
131 | this.siticoneRoundedButton1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
132 | this.siticoneRoundedButton1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
133 | this.siticoneRoundedButton1.HoveredState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
134 | this.siticoneRoundedButton1.HoveredState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
135 | this.siticoneRoundedButton1.HoveredState.Parent = this.siticoneRoundedButton1;
136 | this.siticoneRoundedButton1.Location = new System.Drawing.Point(65, 235);
137 | this.siticoneRoundedButton1.Name = "siticoneRoundedButton1";
138 | this.siticoneRoundedButton1.ShadowDecoration.Parent = this.siticoneRoundedButton1;
139 | this.siticoneRoundedButton1.Size = new System.Drawing.Size(236, 40);
140 | this.siticoneRoundedButton1.TabIndex = 51;
141 | this.siticoneRoundedButton1.Text = "Button 2";
142 | this.siticoneRoundedButton1.Click += new System.EventHandler(this.siticoneRoundedButton1_Click);
143 | //
144 | // siticoneRoundedButton2
145 | //
146 | this.siticoneRoundedButton2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
147 | this.siticoneRoundedButton2.BorderThickness = 1;
148 | this.siticoneRoundedButton2.CheckedState.Parent = this.siticoneRoundedButton2;
149 | this.siticoneRoundedButton2.CustomImages.Parent = this.siticoneRoundedButton2;
150 | this.siticoneRoundedButton2.FillColor = System.Drawing.Color.Transparent;
151 | this.siticoneRoundedButton2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
152 | this.siticoneRoundedButton2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
153 | this.siticoneRoundedButton2.HoveredState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
154 | this.siticoneRoundedButton2.HoveredState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
155 | this.siticoneRoundedButton2.HoveredState.Parent = this.siticoneRoundedButton2;
156 | this.siticoneRoundedButton2.Location = new System.Drawing.Point(65, 315);
157 | this.siticoneRoundedButton2.Name = "siticoneRoundedButton2";
158 | this.siticoneRoundedButton2.ShadowDecoration.Parent = this.siticoneRoundedButton2;
159 | this.siticoneRoundedButton2.Size = new System.Drawing.Size(236, 40);
160 | this.siticoneRoundedButton2.TabIndex = 52;
161 | this.siticoneRoundedButton2.Text = "Button 3";
162 | this.siticoneRoundedButton2.Click += new System.EventHandler(this.siticoneRoundedButton2_Click);
163 | //
164 | // label3
165 | //
166 | this.label3.AutoSize = true;
167 | this.label3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
168 | this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
169 | this.label3.Location = new System.Drawing.Point(11, 9);
170 | this.label3.Name = "label3";
171 | this.label3.Size = new System.Drawing.Size(85, 17);
172 | this.label3.TabIndex = 57;
173 | this.label3.Text = "Account Type";
174 | //
175 | // panel1
176 | //
177 | this.panel1.Location = new System.Drawing.Point(292, 143);
178 | this.panel1.Name = "panel1";
179 | this.panel1.Size = new System.Drawing.Size(37, 100);
180 | this.panel1.TabIndex = 66;
181 | //
182 | // panel3
183 | //
184 | this.panel3.Location = new System.Drawing.Point(35, 134);
185 | this.panel3.Name = "panel3";
186 | this.panel3.Size = new System.Drawing.Size(52, 100);
187 | this.panel3.TabIndex = 65;
188 | //
189 | // pictureBox11
190 | //
191 | this.pictureBox11.Image = global::Cookies_Loader_Base.Properties.Resources.giphy__1_;
192 | this.pictureBox11.Location = new System.Drawing.Point(53, 9);
193 | this.pictureBox11.Name = "pictureBox11";
194 | this.pictureBox11.Size = new System.Drawing.Size(276, 151);
195 | this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
196 | this.pictureBox11.TabIndex = 63;
197 | this.pictureBox11.TabStop = false;
198 | //
199 | // MainForm
200 | //
201 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
202 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
203 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(39)))), ((int)(((byte)(42)))));
204 | this.ClientSize = new System.Drawing.Size(367, 450);
205 | this.Controls.Add(this.label3);
206 | this.Controls.Add(this.siticoneRoundedButton2);
207 | this.Controls.Add(this.siticoneRoundedButton1);
208 | this.Controls.Add(this.LoginBtn);
209 | this.Controls.Add(this.siticoneControlBox2);
210 | this.Controls.Add(this.siticoneControlBox1);
211 | this.Controls.Add(this.progressBar1);
212 | this.Controls.Add(this.panel1);
213 | this.Controls.Add(this.panel3);
214 | this.Controls.Add(this.panel4);
215 | this.Controls.Add(this.pictureBox11);
216 | this.ForeColor = System.Drawing.SystemColors.Control;
217 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
218 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
219 | this.Name = "MainForm";
220 | this.Text = "LaunchForm";
221 | this.Load += new System.EventHandler(this.LaunchForm_Load);
222 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
223 | this.ResumeLayout(false);
224 | this.PerformLayout();
225 |
226 | }
227 |
228 | #endregion
229 | private System.Windows.Forms.ProgressBar progressBar1;
230 | private Bunifu.Framework.UI.BunifuDragControl bunifuDragControl1;
231 | private Siticone.UI.WinForms.SiticoneControlBox siticoneControlBox1;
232 | private Siticone.UI.WinForms.SiticoneControlBox siticoneControlBox2;
233 | private Siticone.UI.WinForms.SiticoneRoundedButton LoginBtn;
234 | private Siticone.UI.WinForms.SiticoneRoundedButton siticoneRoundedButton1;
235 | private Siticone.UI.WinForms.SiticoneRoundedButton siticoneRoundedButton2;
236 | private System.Windows.Forms.Label label3;
237 | private System.Windows.Forms.Panel panel1;
238 | private System.Windows.Forms.Panel panel3;
239 | private System.Windows.Forms.Panel panel4;
240 | private System.Windows.Forms.PictureBox pictureBox11;
241 | }
242 | }
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Register.resx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 | text/microsoft-resx
110 |
111 |
112 | 2.0
113 |
114 |
115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
119 |
120 |
121 | 17, 17
122 |
123 |
124 | 214, 17
125 |
126 |
127 |
128 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
129 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
130 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
131 |
132 |
133 |
134 |
135 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
136 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
137 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
138 |
139 |
140 |
141 |
142 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
143 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
144 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
145 |
146 |
147 |
148 |
149 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
150 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
151 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
152 |
153 |
154 |
155 |
156 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
157 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
158 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
159 |
160 |
161 |
162 | 394, 17
163 |
164 |
165 | 559, 17
166 |
167 |
168 | 691, 17
169 |
170 |
171 |
172 |
173 | AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMMOAADDDgAAAAAAAAAA
174 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZxSAAGcUcEBnJIKAZySGkGckipBnJI1QZy
175 | SO4Gckj6BnJI+gZySO4GckjVBnJIqQZySGkGckgoBnFHBAZxSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
176 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZyRwAGckcDBnJINQZySJUGckjdBnJI+wZy
177 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI+wZySN0GckiVBnJINQZyRwMGckcAAAAAAAAA
178 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd0SAAGcUgABnJIGQZySIYGckjoBnJI/wZy
179 | SP8Gckj/BnJI/wZySP8Gckj/CoFS/wh6Tf8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8GckjoBnJIhgZy
180 | SBkGcUgAB3RIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcUcACHNJAAZySDQGcki/BnJI/gZy
181 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZxR/8LhlX/C4RU/wZxR/8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
182 | SP8Gckj+BnJIvwZySDQIc0kABXFHAAAAAAAAAAAAAAAAAAAAAAAAAAAABHBGAAd0SgAGcUhABnJI1gZy
183 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnFI/wh7Tv8Lh1X/BXJI/wZzSP8Gc0j/BXNI/wVz
184 | SP8Gckj/BnJI/wZySP8Gckj/BnJI1gZxSEAHdEoABHBGAAAAAAAAAAAAAAAAAAZxSAAGckgABnJINQZy
185 | SNYGckj/BnJI/wZySP8Gckj/BnJI/wVzSP8Gc0j/B3FH/wdvR/8Hb0f/CXhM/xF4T/8PXkD/DWRC/w9g
186 | Qf8TWD7/DmNC/wdwR/8Fc0j/BnJI/wZySP8Gckj/BnJI1gZySDUGckgABnFIAAAAAAAAAAAABnJIAAZy
187 | SBkGcki/BnJI/wZySP8Gckj/BnJI/wZzSP8JbEX/E1c9/xpKOP8fPzP/ITwy/yA+M/8fQjX/JjUw/yks
188 | LP8nLy3/KC0s/yoqK/8oLy3/HkI1/xBdP/8HcEf/BnJI/wZySP8Gckj/BnJIvwZySBkGckgAAAAAAAZy
189 | RwAGckUCBnJIhgZySP8Gckj/BnJI/wZySP8HcUf/DWVD/x5CNP8qKiv/Kygq/ysnKv8rKCr/Kykq/yop
190 | Kv8qKSr/Kykr/yspK/8rKSv/Kior/yoqK/8rKSv/KC0s/xJaPv8Gc0j/BnJI/wZySP8Gckj/BnJIhgZy
191 | RQIGckcABnJIAAZySDYGckjnBnJI/wZySP8Gckj/CG1G/xhNOf8nMC3/KSws/ycyL/8mPDT/J0c7/yk7
192 | Nf8qLS3/Jzgy/yU+Nf8jQTb/IltD/yRUQP8pMS//Kior/yoqK/8qKSv/GE45/wV0SP8Gckj/BnJI/wZy
193 | SP8GckjnBnJINgZySAAGcUgDBnJIlAZySP8Gckj/BnNI/w5hQf8iOzH/Kiss/yY2Mf8WWD7/DWZD/wpu
194 | R/8Phlf/GZJh/x1/WP8ZZ0j/EHZN/wyMVv8MmFz/C4JR/xpTPf8qLi7/Kior/yopK/8hOzL/DWVD/wZz
195 | SP8Gckj/BnJI/wZySP8GckiUBnFIAwZySCgGckjcBnJI/wZzSP8LaET/Izgx/yY2MP8ZUTz/EWpH/wqB
196 | Uv8LiFb/DIlX/wuHVv8Milf/D5dg/xGlaP8LmFz/CYhT/wiBUP8HgE//EXRL/yY8M/8qKCr/Kior/yop
197 | K/8lMy//FFU8/wdwR/8Gckj/BnJI/wZySNwGckgoBnJIaQZySPoGckj/BnJI/xpKOP8oMC7/HFZA/xiH
198 | W/8Wr3H/Gbd2/xq6ef8buXj/H4xg/yNjSf8fZ0r/G4JY/w+NWP8KjFb/Cpdb/wylYv8MqGT/FoBS/yVB
199 | Nv8qKSv/Kior/yopK/8nLy3/DWRC/wZzSP8Gckj/BnJI+gZySGkGckipBnJI/wZySP8Ka0X/JDUv/yk/
200 | N/8kf1r/Hbh5/xy+fP8bvXv/Grt5/x2SY/8nPzb/Kigq/ygsK/8oMC7/JTgx/yBMOv8WW0D/EXRL/xCQ
201 | WP8QnF7/F4JT/yY/Nf8qKiv/Ki0s/yJBNf8KbEb/BnJI/wZySP8Gckj/BnJIqQZySNUGckj/BXNI/w9g
202 | Qf8pLS3/JU0+/xiDWP8Um2X/E59m/xCYYf8Ohlb/H0g5/yoqK/8qKiv/GFA6/xiAVv8eXkT/ITsy/yc0
203 | L/8nMi7/JjYw/yY7M/8mPDT/KDMv/ygvLf8WWj//C3dL/wd2Sv8Gckj/BnJI/wZySP8GckjVBnJI7gZy
204 | SP8Fc0j/EF5A/ykuLf8dUD3/C2pG/wprRv8GcUj/CoBR/xp+Vv8pMi//Kikr/yooKv8eUz7/FrNy/w6j
205 | Y/8Idkr/EHNK/x1kRf8nOTL/KSws/x5GN/8VUzv/D19A/wZxR/8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
206 | SO4Gckj6BnJI/wZzSP8NZUP/JzEu/x9KOv8OZ0X/FVtA/w+HV/8XsXL/H55q/ylDOf8qKSr/Kikq/yg6
207 | NP8cn2n/D6Zl/xBrRv8dRjb/KDMv/yorLP8qKSv/HVU+/wiDUP8GdEj/BnJI/wZySP8Gckj/BnJI/wZy
208 | SP8Gckj/BnJI+gZySPoGckj/BnJI/whvR/8hPDL/Jzcy/xBjQ/8bYEX/HKpw/xu+e/8dsHT/JmNK/yor
209 | LP8qKiv/Kikr/yVTQP8gW0L/KDAu/yopKv8qKyz/Kior/yooKv8gVz//DaFh/wiBUP8GcUj/BnJI/wZy
210 | SP8Gckj/BnJI/wZySP8Gckj6BnJI7gZySP8Gckj/BnNI/xZRO/8oLy7/FWRF/xuPYP8eq3H/G717/xu5
211 | ef8Vg1f/ITwz/yopK/8qKiv/Kigq/yooKv8nNjD/KDAt/ygwLv8qKiv/Kigq/yFPPP8OpmP/C5td/wd3
212 | Sv8Gckj/BnJI/wZySP8Gckj/BnJI/wZySO4GckjVBnJI/wZySP8Gc0j/C2dE/yUzLv8nTj//HqNt/x6t
213 | cv8aunj/Epxk/wd3S/8OYUH/JTMu/yooKv8nPjX/IVQ+/xZ7T/8SYUL/HEc3/yoqK/8qKCr/IFM+/w2n
214 | Y/8NqGT/CYtV/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI1QZySKkGckj/BnJI/wZySP8Gckj/GE05/yo0
215 | Mf8iiF7/F69x/w2NWv8HdEr/BnJI/wZySP8SZET/Jkc6/yB2U/8Qp2X/DKNh/wZ9Tf8XUTv/Kikr/yoo
216 | Kv8dUjz/DJ1e/w2oZP8Mn1//B3hL/wZySP8Gckj/BnJI/wZySP8GckipBnJIaQZySPoGckj/BnJI/wZz
217 | Sf8SflL/KDo0/yRLPP8Md03/BnJI/wZySP8Gckj/BnFH/wuGVf8cqW//HKVs/w+rZ/8MpGL/B39P/xlN
218 | Of8rKSv/Kykr/xlNOf8GeUv/CYhT/wubXf8JiFP/BnJI/wZySP8Gckj/BnJI+gZySGkGckgoBnJI3AZy
219 | SP8Gckj/B3VK/wuGVf8VWT//KC0s/xpNOv8IcEf/BnJI/wZySP8GcUf/DIZW/xq6eP8Zu3j/D6tn/wyl
220 | Yv8Jfk7/HUU2/yspK/8qKiv/FFU8/wVzSP8GcUj/BnZK/wh/T/8GdEn/BnJI/wZySP8GckjcBnJIKAZx
221 | SAMGckiUBnJI/wZySP8Gckj/BnJI/wdxR/8ZTDn/KS4t/xxNO/8JbUf/BnNI/wZxR/8KglP/Gbd2/xm7
222 | eP8PrGf/DaNh/xdhQ/8nMC7/Kykr/ygvLf8OYUH/BnNI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
223 | SJQGcUgDBnJIAAZySDYGckjnBnJI/wZySP8Gckj/BnJI/whtRv8dQzX/KS4t/x9HOP8WW0H/CmxG/wl6
224 | Tf8YrHD/HK5y/xSYX/8YfFD/JzYx/yopK/8hOzL/EVs+/wdxSP8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
225 | SP8GckjnBnJINgZySAAGckcABnJFAgZySIYGckj/BnJI/wZySP8Gckj/BnNI/wlsRf8ZTDn/JTMv/yku
226 | Lf8lOjP/IEQ3/yZQQP8pQjn/KTYx/ykwLv8nMC3/Gkk3/wpqRP8Fc0j/BnJI/wZySP8Gckj/BnJI/wZy
227 | SP8Gckj/BnJI/wZySIYGckUCBnJHAAAAAAAGckgABnJIGQZySL8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
228 | SP8LaET/FFU8/x1DNf8iOTH/JDsz/yNbRP8acUz/FmFC/w5hQf8GcUf/BnJI/wZySP8Gckj/BnJI/wZy
229 | SP8Gckj/BnJI/wZySP8Gcki/BnJIGQZySAAAAAAAAAAAAAZxSAAGckgABnJINQZySNYGckj/BnJI/wZy
230 | SP8Gckj/BnJI/wZzSP8Fc0j/BnFI/whtRv8LeE3/F7Fx/w6oZf8GfU3/BXJI/wZySP8Gckj/BnJI/wZy
231 | SP8Gckj/BnJI/wZySP8Gckj/BnJI1gZySDUGckgABnFIAAAAAAAAAAAAAAAAAARwRgAHdEoABnFIQAZy
232 | SNYGckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI/wd0Sf8RnmX/DZpe/wZ0Sf8Gckj/BnJI/wZy
233 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySNYGcUhAB3RKAARwRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAVx
234 | RwAIc0kABnJINAZySL8Gckj+BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnFH/wuJVv8KiVb/BnFH/wZy
235 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP4Gcki/BnJINAhzSQAFcUcAAAAAAAAAAAAAAAAAAAAAAAAA
236 | AAAAAAAAAAAAAAd0SAAGcUgABnJIGQZySIYGckjoBnJI/wZySP8Gckj/BnJI/wZySP8Gckj/CHlN/wd5
237 | TP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8GckjoBnJIhgZySBkGcUgAB3RIAAAAAAAAAAAAAAAAAAAA
238 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGckcABnJHAwZySDUGckiVBnJI3QZySPsGckj/BnJI/wZy
239 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySPsGckjdBnJIlQZySDUGckcDBnJHAAAAAAAAAAAAAAAAAAAA
240 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnFIAAZxRwQGckgoBnJIaQZy
241 | SKkGckjVBnJI7gZySPoGckj6BnJI7gZySNUGckipBnJIaQZySCgGcUcEBnFIAAAAAAAAAAAAAAAAAAAA
242 | AAAAAAAAAAAAAAAAAAAAAAAA/4AB//4AAH/8AAA/+AAAH/AAAA/gAAAHwAAAA4AAAAGAAAABAAAAAAAA
243 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAABgAAAAcAA
244 | AAPgAAAH8AAAD/gAAB/8AAA//gAAf/+AAf8=
245 |
246 |
247 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Login.resx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 | text/microsoft-resx
110 |
111 |
112 | 2.0
113 |
114 |
115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
119 |
120 |
121 | 17, 17
122 |
123 |
124 | 214, 17
125 |
126 |
127 | 214, 17
128 |
129 |
130 |
131 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
132 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
133 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
134 |
135 |
136 |
137 |
138 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
139 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
140 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
141 |
142 |
143 |
144 |
145 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
146 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
147 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
148 |
149 |
150 |
151 |
152 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
153 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
154 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
155 |
156 |
157 |
158 |
159 | AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
160 | dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
161 | d2luZy5Qb2ludEYCAAAAAXgBeQAACwsCAAAAAAAAAAAAAAAL
162 |
163 |
164 |
165 | 394, 17
166 |
167 |
168 | 559, 17
169 |
170 |
171 | 691, 17
172 |
173 |
174 |
175 |
176 | AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMMOAADDDgAAAAAAAAAA
177 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZxSAAGcUcEBnJIKAZySGkGckipBnJI1QZy
178 | SO4Gckj6BnJI+gZySO4GckjVBnJIqQZySGkGckgoBnFHBAZxSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
179 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZyRwAGckcDBnJINQZySJUGckjdBnJI+wZy
180 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI+wZySN0GckiVBnJINQZyRwMGckcAAAAAAAAA
181 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd0SAAGcUgABnJIGQZySIYGckjoBnJI/wZy
182 | SP8Gckj/BnJI/wZySP8Gckj/CoFS/wh6Tf8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8GckjoBnJIhgZy
183 | SBkGcUgAB3RIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcUcACHNJAAZySDQGcki/BnJI/gZy
184 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZxR/8LhlX/C4RU/wZxR/8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
185 | SP8Gckj+BnJIvwZySDQIc0kABXFHAAAAAAAAAAAAAAAAAAAAAAAAAAAABHBGAAd0SgAGcUhABnJI1gZy
186 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnFI/wh7Tv8Lh1X/BXJI/wZzSP8Gc0j/BXNI/wVz
187 | SP8Gckj/BnJI/wZySP8Gckj/BnJI1gZxSEAHdEoABHBGAAAAAAAAAAAAAAAAAAZxSAAGckgABnJINQZy
188 | SNYGckj/BnJI/wZySP8Gckj/BnJI/wVzSP8Gc0j/B3FH/wdvR/8Hb0f/CXhM/xF4T/8PXkD/DWRC/w9g
189 | Qf8TWD7/DmNC/wdwR/8Fc0j/BnJI/wZySP8Gckj/BnJI1gZySDUGckgABnFIAAAAAAAAAAAABnJIAAZy
190 | SBkGcki/BnJI/wZySP8Gckj/BnJI/wZzSP8JbEX/E1c9/xpKOP8fPzP/ITwy/yA+M/8fQjX/JjUw/yks
191 | LP8nLy3/KC0s/yoqK/8oLy3/HkI1/xBdP/8HcEf/BnJI/wZySP8Gckj/BnJIvwZySBkGckgAAAAAAAZy
192 | RwAGckUCBnJIhgZySP8Gckj/BnJI/wZySP8HcUf/DWVD/x5CNP8qKiv/Kygq/ysnKv8rKCr/Kykq/yop
193 | Kv8qKSr/Kykr/yspK/8rKSv/Kior/yoqK/8rKSv/KC0s/xJaPv8Gc0j/BnJI/wZySP8Gckj/BnJIhgZy
194 | RQIGckcABnJIAAZySDYGckjnBnJI/wZySP8Gckj/CG1G/xhNOf8nMC3/KSws/ycyL/8mPDT/J0c7/yk7
195 | Nf8qLS3/Jzgy/yU+Nf8jQTb/IltD/yRUQP8pMS//Kior/yoqK/8qKSv/GE45/wV0SP8Gckj/BnJI/wZy
196 | SP8GckjnBnJINgZySAAGcUgDBnJIlAZySP8Gckj/BnNI/w5hQf8iOzH/Kiss/yY2Mf8WWD7/DWZD/wpu
197 | R/8Phlf/GZJh/x1/WP8ZZ0j/EHZN/wyMVv8MmFz/C4JR/xpTPf8qLi7/Kior/yopK/8hOzL/DWVD/wZz
198 | SP8Gckj/BnJI/wZySP8GckiUBnFIAwZySCgGckjcBnJI/wZzSP8LaET/Izgx/yY2MP8ZUTz/EWpH/wqB
199 | Uv8LiFb/DIlX/wuHVv8Milf/D5dg/xGlaP8LmFz/CYhT/wiBUP8HgE//EXRL/yY8M/8qKCr/Kior/yop
200 | K/8lMy//FFU8/wdwR/8Gckj/BnJI/wZySNwGckgoBnJIaQZySPoGckj/BnJI/xpKOP8oMC7/HFZA/xiH
201 | W/8Wr3H/Gbd2/xq6ef8buXj/H4xg/yNjSf8fZ0r/G4JY/w+NWP8KjFb/Cpdb/wylYv8MqGT/FoBS/yVB
202 | Nv8qKSv/Kior/yopK/8nLy3/DWRC/wZzSP8Gckj/BnJI+gZySGkGckipBnJI/wZySP8Ka0X/JDUv/yk/
203 | N/8kf1r/Hbh5/xy+fP8bvXv/Grt5/x2SY/8nPzb/Kigq/ygsK/8oMC7/JTgx/yBMOv8WW0D/EXRL/xCQ
204 | WP8QnF7/F4JT/yY/Nf8qKiv/Ki0s/yJBNf8KbEb/BnJI/wZySP8Gckj/BnJIqQZySNUGckj/BXNI/w9g
205 | Qf8pLS3/JU0+/xiDWP8Um2X/E59m/xCYYf8Ohlb/H0g5/yoqK/8qKiv/GFA6/xiAVv8eXkT/ITsy/yc0
206 | L/8nMi7/JjYw/yY7M/8mPDT/KDMv/ygvLf8WWj//C3dL/wd2Sv8Gckj/BnJI/wZySP8GckjVBnJI7gZy
207 | SP8Fc0j/EF5A/ykuLf8dUD3/C2pG/wprRv8GcUj/CoBR/xp+Vv8pMi//Kikr/yooKv8eUz7/FrNy/w6j
208 | Y/8Idkr/EHNK/x1kRf8nOTL/KSws/x5GN/8VUzv/D19A/wZxR/8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
209 | SO4Gckj6BnJI/wZzSP8NZUP/JzEu/x9KOv8OZ0X/FVtA/w+HV/8XsXL/H55q/ylDOf8qKSr/Kikq/yg6
210 | NP8cn2n/D6Zl/xBrRv8dRjb/KDMv/yorLP8qKSv/HVU+/wiDUP8GdEj/BnJI/wZySP8Gckj/BnJI/wZy
211 | SP8Gckj/BnJI+gZySPoGckj/BnJI/whvR/8hPDL/Jzcy/xBjQ/8bYEX/HKpw/xu+e/8dsHT/JmNK/yor
212 | LP8qKiv/Kikr/yVTQP8gW0L/KDAu/yopKv8qKyz/Kior/yooKv8gVz//DaFh/wiBUP8GcUj/BnJI/wZy
213 | SP8Gckj/BnJI/wZySP8Gckj6BnJI7gZySP8Gckj/BnNI/xZRO/8oLy7/FWRF/xuPYP8eq3H/G717/xu5
214 | ef8Vg1f/ITwz/yopK/8qKiv/Kigq/yooKv8nNjD/KDAt/ygwLv8qKiv/Kigq/yFPPP8OpmP/C5td/wd3
215 | Sv8Gckj/BnJI/wZySP8Gckj/BnJI/wZySO4GckjVBnJI/wZySP8Gc0j/C2dE/yUzLv8nTj//HqNt/x6t
216 | cv8aunj/Epxk/wd3S/8OYUH/JTMu/yooKv8nPjX/IVQ+/xZ7T/8SYUL/HEc3/yoqK/8qKCr/IFM+/w2n
217 | Y/8NqGT/CYtV/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI1QZySKkGckj/BnJI/wZySP8Gckj/GE05/yo0
218 | Mf8iiF7/F69x/w2NWv8HdEr/BnJI/wZySP8SZET/Jkc6/yB2U/8Qp2X/DKNh/wZ9Tf8XUTv/Kikr/yoo
219 | Kv8dUjz/DJ1e/w2oZP8Mn1//B3hL/wZySP8Gckj/BnJI/wZySP8GckipBnJIaQZySPoGckj/BnJI/wZz
220 | Sf8SflL/KDo0/yRLPP8Md03/BnJI/wZySP8Gckj/BnFH/wuGVf8cqW//HKVs/w+rZ/8MpGL/B39P/xlN
221 | Of8rKSv/Kykr/xlNOf8GeUv/CYhT/wubXf8JiFP/BnJI/wZySP8Gckj/BnJI+gZySGkGckgoBnJI3AZy
222 | SP8Gckj/B3VK/wuGVf8VWT//KC0s/xpNOv8IcEf/BnJI/wZySP8GcUf/DIZW/xq6eP8Zu3j/D6tn/wyl
223 | Yv8Jfk7/HUU2/yspK/8qKiv/FFU8/wVzSP8GcUj/BnZK/wh/T/8GdEn/BnJI/wZySP8GckjcBnJIKAZx
224 | SAMGckiUBnJI/wZySP8Gckj/BnJI/wdxR/8ZTDn/KS4t/xxNO/8JbUf/BnNI/wZxR/8KglP/Gbd2/xm7
225 | eP8PrGf/DaNh/xdhQ/8nMC7/Kykr/ygvLf8OYUH/BnNI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
226 | SJQGcUgDBnJIAAZySDYGckjnBnJI/wZySP8Gckj/BnJI/whtRv8dQzX/KS4t/x9HOP8WW0H/CmxG/wl6
227 | Tf8YrHD/HK5y/xSYX/8YfFD/JzYx/yopK/8hOzL/EVs+/wdxSP8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
228 | SP8GckjnBnJINgZySAAGckcABnJFAgZySIYGckj/BnJI/wZySP8Gckj/BnNI/wlsRf8ZTDn/JTMv/yku
229 | Lf8lOjP/IEQ3/yZQQP8pQjn/KTYx/ykwLv8nMC3/Gkk3/wpqRP8Fc0j/BnJI/wZySP8Gckj/BnJI/wZy
230 | SP8Gckj/BnJI/wZySIYGckUCBnJHAAAAAAAGckgABnJIGQZySL8Gckj/BnJI/wZySP8Gckj/BnJI/wZy
231 | SP8LaET/FFU8/x1DNf8iOTH/JDsz/yNbRP8acUz/FmFC/w5hQf8GcUf/BnJI/wZySP8Gckj/BnJI/wZy
232 | SP8Gckj/BnJI/wZySP8Gcki/BnJIGQZySAAAAAAAAAAAAAZxSAAGckgABnJINQZySNYGckj/BnJI/wZy
233 | SP8Gckj/BnJI/wZzSP8Fc0j/BnFI/whtRv8LeE3/F7Fx/w6oZf8GfU3/BXJI/wZySP8Gckj/BnJI/wZy
234 | SP8Gckj/BnJI/wZySP8Gckj/BnJI1gZySDUGckgABnFIAAAAAAAAAAAAAAAAAARwRgAHdEoABnFIQAZy
235 | SNYGckj/BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnJI/wd0Sf8RnmX/DZpe/wZ0Sf8Gckj/BnJI/wZy
236 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySNYGcUhAB3RKAARwRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAVx
237 | RwAIc0kABnJINAZySL8Gckj+BnJI/wZySP8Gckj/BnJI/wZySP8Gckj/BnFH/wuJVv8KiVb/BnFH/wZy
238 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP4Gcki/BnJINAhzSQAFcUcAAAAAAAAAAAAAAAAAAAAAAAAA
239 | AAAAAAAAAAAAAAd0SAAGcUgABnJIGQZySIYGckjoBnJI/wZySP8Gckj/BnJI/wZySP8Gckj/CHlN/wd5
240 | TP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySP8GckjoBnJIhgZySBkGcUgAB3RIAAAAAAAAAAAAAAAAAAAA
241 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGckcABnJHAwZySDUGckiVBnJI3QZySPsGckj/BnJI/wZy
242 | SP8Gckj/BnJI/wZySP8Gckj/BnJI/wZySPsGckjdBnJIlQZySDUGckcDBnJHAAAAAAAAAAAAAAAAAAAA
243 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnFIAAZxRwQGckgoBnJIaQZy
244 | SKkGckjVBnJI7gZySPoGckj6BnJI7gZySNUGckipBnJIaQZySCgGcUcEBnFIAAAAAAAAAAAAAAAAAAAA
245 | AAAAAAAAAAAAAAAAAAAAAAAA/4AB//4AAH/8AAA/+AAAH/AAAA/gAAAHwAAAA4AAAAGAAAABAAAAAAAA
246 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAABgAAAAcAA
247 | AAPgAAAH8AAAD/gAAB/8AAA//gAAf/+AAf8=
248 |
249 |
250 |
--------------------------------------------------------------------------------
/Cookies_Loader_Base/LoadingForm.Designer.cs:
--------------------------------------------------------------------------------
1 |
2 | namespace Cookies_Loader_Base
3 | {
4 | partial class LoadingForm
5 | {
6 | ///
7 | /// Required designer variable.
8 | ///
9 | private System.ComponentModel.IContainer components = null;
10 |
11 | ///
12 | /// Clean up any resources being used.
13 | ///
14 | /// true if managed resources should be disposed; otherwise, false.
15 | protected override void Dispose(bool disposing)
16 | {
17 | if (disposing && (components != null))
18 | {
19 | components.Dispose();
20 | }
21 | base.Dispose(disposing);
22 | }
23 |
24 | #region Windows Form Designer generated code
25 |
26 | ///
27 | /// Required method for Designer support - do not modify
28 | /// the contents of this method with the code editor.
29 | ///
30 | private void InitializeComponent()
31 | {
32 | this.components = new System.ComponentModel.Container();
33 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoadingForm));
34 | this.label1 = new System.Windows.Forms.Label();
35 | this.panel2 = new System.Windows.Forms.Panel();
36 | this.panel1 = new System.Windows.Forms.Panel();
37 | this.panel4 = new System.Windows.Forms.Panel();
38 | this.panel3 = new System.Windows.Forms.Panel();
39 | this.timer1 = new System.Windows.Forms.Timer(this.components);
40 | this.timer2 = new System.Windows.Forms.Timer(this.components);
41 | this.label2 = new System.Windows.Forms.Label();
42 | this.timer3 = new System.Windows.Forms.Timer(this.components);
43 | this.timer4 = new System.Windows.Forms.Timer(this.components);
44 | this.timer5 = new System.Windows.Forms.Timer(this.components);
45 | this.timer6 = new System.Windows.Forms.Timer(this.components);
46 | this.bunifuDragControl1 = new Bunifu.Framework.UI.BunifuDragControl(this.components);
47 | this.fadeintimer = new System.Windows.Forms.Timer(this.components);
48 | this.pictureBox10 = new System.Windows.Forms.PictureBox();
49 | this.pictureBox9 = new System.Windows.Forms.PictureBox();
50 | this.pictureBox8 = new System.Windows.Forms.PictureBox();
51 | this.pictureBox7 = new System.Windows.Forms.PictureBox();
52 | this.pictureBox6 = new System.Windows.Forms.PictureBox();
53 | this.pictureBox5 = new System.Windows.Forms.PictureBox();
54 | this.pictureBox4 = new System.Windows.Forms.PictureBox();
55 | this.pictureBox3 = new System.Windows.Forms.PictureBox();
56 | this.pictureBox2 = new System.Windows.Forms.PictureBox();
57 | this.pictureBox1 = new System.Windows.Forms.PictureBox();
58 | this.pictureBox11 = new System.Windows.Forms.PictureBox();
59 | this.panel5 = new System.Windows.Forms.Panel();
60 | this.panel1.SuspendLayout();
61 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
62 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
63 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit();
64 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
65 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
66 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
67 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
68 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
69 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
70 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
71 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
72 | this.SuspendLayout();
73 | //
74 | // label1
75 | //
76 | this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
77 | | System.Windows.Forms.AnchorStyles.Left)
78 | | System.Windows.Forms.AnchorStyles.Right)));
79 | this.label1.AutoSize = true;
80 | this.label1.ForeColor = System.Drawing.Color.White;
81 | this.label1.Location = new System.Drawing.Point(123, 347);
82 | this.label1.Name = "label1";
83 | this.label1.Size = new System.Drawing.Size(25, 13);
84 | this.label1.TabIndex = 9;
85 | this.label1.Text = "0 %";
86 | this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
87 | //
88 | // panel2
89 | //
90 | this.panel2.Location = new System.Drawing.Point(55, 297);
91 | this.panel2.Name = "panel2";
92 | this.panel2.Size = new System.Drawing.Size(153, 38);
93 | this.panel2.TabIndex = 8;
94 | //
95 | // panel1
96 | //
97 | this.panel1.Controls.Add(this.panel4);
98 | this.panel1.Controls.Add(this.panel3);
99 | this.panel1.Controls.Add(this.pictureBox10);
100 | this.panel1.Controls.Add(this.pictureBox9);
101 | this.panel1.Controls.Add(this.pictureBox8);
102 | this.panel1.Controls.Add(this.pictureBox7);
103 | this.panel1.Controls.Add(this.pictureBox6);
104 | this.panel1.Controls.Add(this.pictureBox5);
105 | this.panel1.Controls.Add(this.pictureBox4);
106 | this.panel1.Controls.Add(this.pictureBox3);
107 | this.panel1.Location = new System.Drawing.Point(46, 189);
108 | this.panel1.Name = "panel1";
109 | this.panel1.Size = new System.Drawing.Size(179, 101);
110 | this.panel1.TabIndex = 7;
111 | //
112 | // panel4
113 | //
114 | this.panel4.Location = new System.Drawing.Point(113, 69);
115 | this.panel4.Name = "panel4";
116 | this.panel4.Size = new System.Drawing.Size(66, 32);
117 | this.panel4.TabIndex = 6;
118 | //
119 | // panel3
120 | //
121 | this.panel3.Location = new System.Drawing.Point(0, 72);
122 | this.panel3.Name = "panel3";
123 | this.panel3.Size = new System.Drawing.Size(50, 29);
124 | this.panel3.TabIndex = 5;
125 | //
126 | // timer1
127 | //
128 | this.timer1.Interval = 10;
129 | this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
130 | //
131 | // timer2
132 | //
133 | this.timer2.Interval = 1000;
134 | this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
135 | //
136 | // label2
137 | //
138 | this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
139 | | System.Windows.Forms.AnchorStyles.Left)
140 | | System.Windows.Forms.AnchorStyles.Right)));
141 | this.label2.ForeColor = System.Drawing.Color.White;
142 | this.label2.Location = new System.Drawing.Point(12, 389);
143 | this.label2.Name = "label2";
144 | this.label2.Size = new System.Drawing.Size(246, 13);
145 | this.label2.TabIndex = 10;
146 | this.label2.Text = "Loading. . .";
147 | this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
148 | //
149 | // timer3
150 | //
151 | this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
152 | //
153 | // timer4
154 | //
155 | this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
156 | //
157 | // timer5
158 | //
159 | this.timer5.Tick += new System.EventHandler(this.timer5_Tick);
160 | //
161 | // timer6
162 | //
163 | this.timer6.Tick += new System.EventHandler(this.timer6_Tick);
164 | //
165 | // bunifuDragControl1
166 | //
167 | this.bunifuDragControl1.Fixed = true;
168 | this.bunifuDragControl1.Horizontal = true;
169 | this.bunifuDragControl1.TargetControl = this;
170 | this.bunifuDragControl1.Vertical = true;
171 | //
172 | // fadeintimer
173 | //
174 | this.fadeintimer.Interval = 10;
175 | this.fadeintimer.Tick += new System.EventHandler(this.fadeintimer_Tick);
176 | //
177 | // pictureBox10
178 | //
179 | this.pictureBox10.Image = global::Cookies_Loader_Base.Properties.Resources.rain_L;
180 | this.pictureBox10.Location = new System.Drawing.Point(129, 8);
181 | this.pictureBox10.Name = "pictureBox10";
182 | this.pictureBox10.Size = new System.Drawing.Size(15, 39);
183 | this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
184 | this.pictureBox10.TabIndex = 7;
185 | this.pictureBox10.TabStop = false;
186 | //
187 | // pictureBox9
188 | //
189 | this.pictureBox9.Image = global::Cookies_Loader_Base.Properties.Resources.rain_L;
190 | this.pictureBox9.Location = new System.Drawing.Point(113, 28);
191 | this.pictureBox9.Name = "pictureBox9";
192 | this.pictureBox9.Size = new System.Drawing.Size(10, 24);
193 | this.pictureBox9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
194 | this.pictureBox9.TabIndex = 6;
195 | this.pictureBox9.TabStop = false;
196 | //
197 | // pictureBox8
198 | //
199 | this.pictureBox8.Image = global::Cookies_Loader_Base.Properties.Resources.rain_L;
200 | this.pictureBox8.Location = new System.Drawing.Point(97, 14);
201 | this.pictureBox8.Name = "pictureBox8";
202 | this.pictureBox8.Size = new System.Drawing.Size(15, 20);
203 | this.pictureBox8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
204 | this.pictureBox8.TabIndex = 5;
205 | this.pictureBox8.TabStop = false;
206 | //
207 | // pictureBox7
208 | //
209 | this.pictureBox7.Image = global::Cookies_Loader_Base.Properties.Resources.rain_L;
210 | this.pictureBox7.Location = new System.Drawing.Point(85, 35);
211 | this.pictureBox7.Name = "pictureBox7";
212 | this.pictureBox7.Size = new System.Drawing.Size(10, 36);
213 | this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
214 | this.pictureBox7.TabIndex = 4;
215 | this.pictureBox7.TabStop = false;
216 | //
217 | // pictureBox6
218 | //
219 | this.pictureBox6.Image = global::Cookies_Loader_Base.Properties.Resources.rain_L;
220 | this.pictureBox6.Location = new System.Drawing.Point(73, 15);
221 | this.pictureBox6.Name = "pictureBox6";
222 | this.pictureBox6.Size = new System.Drawing.Size(10, 22);
223 | this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
224 | this.pictureBox6.TabIndex = 3;
225 | this.pictureBox6.TabStop = false;
226 | //
227 | // pictureBox5
228 | //
229 | this.pictureBox5.Image = global::Cookies_Loader_Base.Properties.Resources.rain_L;
230 | this.pictureBox5.Location = new System.Drawing.Point(53, 28);
231 | this.pictureBox5.Name = "pictureBox5";
232 | this.pictureBox5.Size = new System.Drawing.Size(15, 50);
233 | this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
234 | this.pictureBox5.TabIndex = 2;
235 | this.pictureBox5.TabStop = false;
236 | //
237 | // pictureBox4
238 | //
239 | this.pictureBox4.Image = global::Cookies_Loader_Base.Properties.Resources.rain_L;
240 | this.pictureBox4.Location = new System.Drawing.Point(40, 27);
241 | this.pictureBox4.Name = "pictureBox4";
242 | this.pictureBox4.Size = new System.Drawing.Size(10, 27);
243 | this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
244 | this.pictureBox4.TabIndex = 1;
245 | this.pictureBox4.TabStop = false;
246 | //
247 | // pictureBox3
248 | //
249 | this.pictureBox3.Image = global::Cookies_Loader_Base.Properties.Resources.rain_L;
250 | this.pictureBox3.Location = new System.Drawing.Point(23, 3);
251 | this.pictureBox3.Name = "pictureBox3";
252 | this.pictureBox3.Size = new System.Drawing.Size(15, 39);
253 | this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
254 | this.pictureBox3.TabIndex = 0;
255 | this.pictureBox3.TabStop = false;
256 | //
257 | // pictureBox2
258 | //
259 | this.pictureBox2.Image = global::Cookies_Loader_Base.Properties.Resources.puddle;
260 | this.pictureBox2.Location = new System.Drawing.Point(55, 297);
261 | this.pictureBox2.Name = "pictureBox2";
262 | this.pictureBox2.Size = new System.Drawing.Size(153, 38);
263 | this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
264 | this.pictureBox2.TabIndex = 6;
265 | this.pictureBox2.TabStop = false;
266 | //
267 | // pictureBox1
268 | //
269 | this.pictureBox1.Image = global::Cookies_Loader_Base.Properties.Resources.cloud;
270 | this.pictureBox1.Location = new System.Drawing.Point(46, 95);
271 | this.pictureBox1.Name = "pictureBox1";
272 | this.pictureBox1.Size = new System.Drawing.Size(179, 88);
273 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
274 | this.pictureBox1.TabIndex = 5;
275 | this.pictureBox1.TabStop = false;
276 | //
277 | // pictureBox11
278 | //
279 | this.pictureBox11.Image = global::Cookies_Loader_Base.Properties.Resources.giphy__1_;
280 | this.pictureBox11.Location = new System.Drawing.Point(-8, -20);
281 | this.pictureBox11.Name = "pictureBox11";
282 | this.pictureBox11.Size = new System.Drawing.Size(276, 151);
283 | this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
284 | this.pictureBox11.TabIndex = 57;
285 | this.pictureBox11.TabStop = false;
286 | //
287 | // panel5
288 | //
289 | this.panel5.Location = new System.Drawing.Point(-8, 95);
290 | this.panel5.Name = "panel5";
291 | this.panel5.Size = new System.Drawing.Size(288, 74);
292 | this.panel5.TabIndex = 63;
293 | //
294 | // LoadingForm
295 | //
296 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
297 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
298 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(39)))), ((int)(((byte)(42)))));
299 | this.ClientSize = new System.Drawing.Size(270, 460);
300 | this.Controls.Add(this.pictureBox1);
301 | this.Controls.Add(this.panel5);
302 | this.Controls.Add(this.label2);
303 | this.Controls.Add(this.label1);
304 | this.Controls.Add(this.panel2);
305 | this.Controls.Add(this.panel1);
306 | this.Controls.Add(this.pictureBox2);
307 | this.Controls.Add(this.pictureBox11);
308 | this.DoubleBuffered = true;
309 | this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
310 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
311 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
312 | this.Name = "LoadingForm";
313 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
314 | this.Text = "LoadingForm";
315 | this.Load += new System.EventHandler(this.LoadingForm_Load);
316 | this.panel1.ResumeLayout(false);
317 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
318 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
319 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit();
320 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
321 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
322 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
323 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
324 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
325 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
326 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
327 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
328 | this.ResumeLayout(false);
329 | this.PerformLayout();
330 |
331 | }
332 |
333 | #endregion
334 |
335 | private System.Windows.Forms.Label label1;
336 | private System.Windows.Forms.Panel panel2;
337 | private System.Windows.Forms.Panel panel1;
338 | private System.Windows.Forms.Panel panel4;
339 | private System.Windows.Forms.Panel panel3;
340 | private System.Windows.Forms.PictureBox pictureBox10;
341 | private System.Windows.Forms.PictureBox pictureBox9;
342 | private System.Windows.Forms.PictureBox pictureBox8;
343 | private System.Windows.Forms.PictureBox pictureBox7;
344 | private System.Windows.Forms.PictureBox pictureBox6;
345 | private System.Windows.Forms.PictureBox pictureBox5;
346 | private System.Windows.Forms.PictureBox pictureBox4;
347 | private System.Windows.Forms.PictureBox pictureBox3;
348 | private System.Windows.Forms.PictureBox pictureBox2;
349 | private System.Windows.Forms.PictureBox pictureBox1;
350 | private System.Windows.Forms.Timer timer1;
351 | private System.Windows.Forms.Timer timer2;
352 | private System.Windows.Forms.Label label2;
353 | private System.Windows.Forms.Timer timer3;
354 | private System.Windows.Forms.Timer timer4;
355 | private System.Windows.Forms.Timer timer5;
356 | private System.Windows.Forms.Timer timer6;
357 | private Bunifu.Framework.UI.BunifuDragControl bunifuDragControl1;
358 | private System.Windows.Forms.Timer fadeintimer;
359 | private System.Windows.Forms.PictureBox pictureBox11;
360 | private System.Windows.Forms.Panel panel5;
361 | }
362 | }
--------------------------------------------------------------------------------
/Cookies_Loader_Base/Login.Designer.cs:
--------------------------------------------------------------------------------
1 | using System.Drawing;
2 |
3 | namespace Cookies_Loader_Base
4 | {
5 | // Token: 0x02000002 RID: 2
6 | public partial class Login : global::System.Windows.Forms.Form
7 | {
8 | // Token: 0x06000011 RID: 17 RVA: 0x0000215C File Offset: 0x0000035C
9 | protected override void Dispose(bool disposing)
10 | {
11 | bool flag = disposing && this.components != null;
12 | if (flag)
13 | {
14 | this.components.Dispose();
15 | }
16 | base.Dispose(disposing);
17 | }
18 |
19 | // Token: 0x06000012 RID: 18 RVA: 0x00002194 File Offset: 0x00000394
20 | private void InitializeComponent()
21 | {
22 | this.components = new System.ComponentModel.Container();
23 | Siticone.UI.AnimatorNS.Animation animation2 = new Siticone.UI.AnimatorNS.Animation();
24 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Login));
25 | this.siticoneDragControl1 = new Siticone.UI.WinForms.SiticoneDragControl(this.components);
26 | this.siticoneControlBox1 = new Siticone.UI.WinForms.SiticoneControlBox();
27 | this.siticoneControlBox2 = new Siticone.UI.WinForms.SiticoneControlBox();
28 | this.siticoneTransition1 = new Siticone.UI.WinForms.SiticoneTransition();
29 | this.label1 = new System.Windows.Forms.Label();
30 | this.LoginBtn = new Siticone.UI.WinForms.SiticoneRoundedButton();
31 | this.status = new Siticone.UI.WinForms.SiticoneLabel();
32 | this.label2 = new System.Windows.Forms.Label();
33 | this.label4 = new System.Windows.Forms.Label();
34 | this.username = new Bunifu.Framework.UI.BunifuMaterialTextbox();
35 | this.password = new Bunifu.Framework.UI.BunifuMaterialTextbox();
36 | this.label5 = new System.Windows.Forms.Label();
37 | this.siticoneShadowForm = new Siticone.UI.WinForms.SiticoneShadowForm(this.components);
38 | this.LauncherTimer = new System.Windows.Forms.Timer(this.components);
39 | this.fadeintimer = new System.Windows.Forms.Timer(this.components);
40 | this.pictureBox11 = new System.Windows.Forms.PictureBox();
41 | this.panel1 = new System.Windows.Forms.Panel();
42 | this.panel2 = new System.Windows.Forms.Panel();
43 | this.panel3 = new System.Windows.Forms.Panel();
44 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
45 | this.SuspendLayout();
46 | //
47 | // siticoneDragControl1
48 | //
49 | this.siticoneDragControl1.TargetControl = this.panel3;
50 | //
51 | // siticoneControlBox1
52 | //
53 | this.siticoneControlBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
54 | this.siticoneControlBox1.BackColor = System.Drawing.Color.Transparent;
55 | this.siticoneControlBox1.BorderColor = System.Drawing.Color.Transparent;
56 | this.siticoneControlBox1.BorderRadius = 10;
57 | this.siticoneTransition1.SetDecoration(this.siticoneControlBox1, Siticone.UI.AnimatorNS.DecorationType.None);
58 | this.siticoneControlBox1.FillColor = System.Drawing.Color.Transparent;
59 | this.siticoneControlBox1.HoveredState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(17)))), ((int)(((byte)(35)))));
60 | this.siticoneControlBox1.HoveredState.IconColor = System.Drawing.Color.White;
61 | this.siticoneControlBox1.HoveredState.Parent = this.siticoneControlBox1;
62 | this.siticoneControlBox1.IconColor = System.Drawing.Color.White;
63 | this.siticoneControlBox1.Location = new System.Drawing.Point(318, 4);
64 | this.siticoneControlBox1.Name = "siticoneControlBox1";
65 | this.siticoneControlBox1.ShadowDecoration.Parent = this.siticoneControlBox1;
66 | this.siticoneControlBox1.Size = new System.Drawing.Size(45, 29);
67 | this.siticoneControlBox1.TabIndex = 1;
68 | this.siticoneControlBox1.Click += new System.EventHandler(this.siticoneControlBox1_Click);
69 | //
70 | // siticoneControlBox2
71 | //
72 | this.siticoneControlBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
73 | this.siticoneControlBox2.BackColor = System.Drawing.Color.Transparent;
74 | this.siticoneControlBox2.BorderRadius = 10;
75 | this.siticoneControlBox2.ControlBoxType = Siticone.UI.WinForms.Enums.ControlBoxType.MinimizeBox;
76 | this.siticoneTransition1.SetDecoration(this.siticoneControlBox2, Siticone.UI.AnimatorNS.DecorationType.None);
77 | this.siticoneControlBox2.FillColor = System.Drawing.Color.Transparent;
78 | this.siticoneControlBox2.HoveredState.Parent = this.siticoneControlBox2;
79 | this.siticoneControlBox2.IconColor = System.Drawing.Color.White;
80 | this.siticoneControlBox2.Location = new System.Drawing.Point(272, 4);
81 | this.siticoneControlBox2.Name = "siticoneControlBox2";
82 | this.siticoneControlBox2.ShadowDecoration.Parent = this.siticoneControlBox2;
83 | this.siticoneControlBox2.Size = new System.Drawing.Size(45, 29);
84 | this.siticoneControlBox2.TabIndex = 2;
85 | this.siticoneControlBox2.Click += new System.EventHandler(this.siticoneControlBox2_Click);
86 | //
87 | // siticoneTransition1
88 | //
89 | this.siticoneTransition1.AnimationType = Siticone.UI.AnimatorNS.AnimationType.Rotate;
90 | this.siticoneTransition1.Cursor = null;
91 | animation2.AnimateOnlyDifferences = true;
92 | animation2.BlindCoeff = ((System.Drawing.PointF)(resources.GetObject("animation2.BlindCoeff")));
93 | animation2.LeafCoeff = 0F;
94 | animation2.MaxTime = 1F;
95 | animation2.MinTime = 0F;
96 | animation2.MosaicCoeff = ((System.Drawing.PointF)(resources.GetObject("animation2.MosaicCoeff")));
97 | animation2.MosaicShift = ((System.Drawing.PointF)(resources.GetObject("animation2.MosaicShift")));
98 | animation2.MosaicSize = 0;
99 | animation2.Padding = new System.Windows.Forms.Padding(50);
100 | animation2.RotateCoeff = 1F;
101 | animation2.RotateLimit = 0F;
102 | animation2.ScaleCoeff = ((System.Drawing.PointF)(resources.GetObject("animation2.ScaleCoeff")));
103 | animation2.SlideCoeff = ((System.Drawing.PointF)(resources.GetObject("animation2.SlideCoeff")));
104 | animation2.TimeCoeff = 0F;
105 | animation2.TransparencyCoeff = 1F;
106 | this.siticoneTransition1.DefaultAnimation = animation2;
107 | //
108 | // label1
109 | //
110 | this.label1.AutoSize = true;
111 | this.siticoneTransition1.SetDecoration(this.label1, Siticone.UI.AnimatorNS.DecorationType.None);
112 | this.label1.Font = new System.Drawing.Font("Segoe UI Light", 10F);
113 | this.label1.ForeColor = System.Drawing.Color.White;
114 | this.label1.Location = new System.Drawing.Point(-1, 136);
115 | this.label1.Name = "label1";
116 | this.label1.Size = new System.Drawing.Size(0, 19);
117 | this.label1.TabIndex = 22;
118 | //
119 | // LoginBtn
120 | //
121 | this.LoginBtn.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
122 | this.LoginBtn.BorderThickness = 1;
123 | this.LoginBtn.CheckedState.Parent = this.LoginBtn;
124 | this.LoginBtn.CustomImages.Parent = this.LoginBtn;
125 | this.siticoneTransition1.SetDecoration(this.LoginBtn, Siticone.UI.AnimatorNS.DecorationType.None);
126 | this.LoginBtn.FillColor = System.Drawing.Color.Transparent;
127 | this.LoginBtn.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
128 | this.LoginBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
129 | this.LoginBtn.HoveredState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
130 | this.LoginBtn.HoveredState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
131 | this.LoginBtn.HoveredState.Parent = this.LoginBtn;
132 | this.LoginBtn.Location = new System.Drawing.Point(67, 287);
133 | this.LoginBtn.Name = "LoginBtn";
134 | this.LoginBtn.ShadowDecoration.Parent = this.LoginBtn;
135 | this.LoginBtn.Size = new System.Drawing.Size(236, 40);
136 | this.LoginBtn.TabIndex = 26;
137 | this.LoginBtn.Text = "Login";
138 | this.LoginBtn.Click += new System.EventHandler(this.LoginBtn_Click);
139 | //
140 | // status
141 | //
142 | this.status.AutoSize = false;
143 | this.status.BackColor = System.Drawing.Color.Transparent;
144 | this.siticoneTransition1.SetDecoration(this.status, Siticone.UI.AnimatorNS.DecorationType.None);
145 | this.status.Dock = System.Windows.Forms.DockStyle.Bottom;
146 | this.status.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
147 | this.status.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
148 | this.status.Location = new System.Drawing.Point(0, 394);
149 | this.status.Margin = new System.Windows.Forms.Padding(2);
150 | this.status.Name = "status";
151 | this.status.Size = new System.Drawing.Size(367, 47);
152 | this.status.TabIndex = 38;
153 | this.status.Text = "Status: Awaiting login";
154 | this.status.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
155 | //
156 | // label2
157 | //
158 | this.label2.AutoSize = true;
159 | this.siticoneTransition1.SetDecoration(this.label2, Siticone.UI.AnimatorNS.DecorationType.None);
160 | this.label2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
161 | this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
162 | this.label2.Location = new System.Drawing.Point(69, 133);
163 | this.label2.Name = "label2";
164 | this.label2.Size = new System.Drawing.Size(67, 17);
165 | this.label2.TabIndex = 45;
166 | this.label2.Text = "Username";
167 | //
168 | // label4
169 | //
170 | this.label4.AutoSize = true;
171 | this.siticoneTransition1.SetDecoration(this.label4, Siticone.UI.AnimatorNS.DecorationType.None);
172 | this.label4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
173 | this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
174 | this.label4.Location = new System.Drawing.Point(69, 195);
175 | this.label4.Name = "label4";
176 | this.label4.Size = new System.Drawing.Size(64, 17);
177 | this.label4.TabIndex = 47;
178 | this.label4.Text = "Password";
179 | //
180 | // username
181 | //
182 | this.username.Cursor = System.Windows.Forms.Cursors.IBeam;
183 | this.siticoneTransition1.SetDecoration(this.username, Siticone.UI.AnimatorNS.DecorationType.None);
184 | this.username.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
185 | this.username.ForeColor = System.Drawing.Color.Silver;
186 | this.username.HintForeColor = System.Drawing.Color.Silver;
187 | this.username.HintText = "";
188 | this.username.isPassword = false;
189 | this.username.LineFocusedColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
190 | this.username.LineIdleColor = System.Drawing.Color.Gray;
191 | this.username.LineMouseHoverColor = System.Drawing.Color.Gray;
192 | this.username.LineThickness = 2;
193 | this.username.Location = new System.Drawing.Point(69, 150);
194 | this.username.Margin = new System.Windows.Forms.Padding(4);
195 | this.username.Name = "username";
196 | this.username.Size = new System.Drawing.Size(234, 30);
197 | this.username.TabIndex = 49;
198 | this.username.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
199 | this.username.Enter += new System.EventHandler(this.username_Enter_1);
200 | this.username.Leave += new System.EventHandler(this.username_Leave);
201 | //
202 | // password
203 | //
204 | this.password.Cursor = System.Windows.Forms.Cursors.IBeam;
205 | this.siticoneTransition1.SetDecoration(this.password, Siticone.UI.AnimatorNS.DecorationType.None);
206 | this.password.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
207 | this.password.ForeColor = System.Drawing.Color.Silver;
208 | this.password.HintForeColor = System.Drawing.Color.Silver;
209 | this.password.HintText = "";
210 | this.password.isPassword = true;
211 | this.password.LineFocusedColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
212 | this.password.LineIdleColor = System.Drawing.Color.Gray;
213 | this.password.LineMouseHoverColor = System.Drawing.Color.Gray;
214 | this.password.LineThickness = 2;
215 | this.password.Location = new System.Drawing.Point(69, 211);
216 | this.password.Margin = new System.Windows.Forms.Padding(4);
217 | this.password.Name = "password";
218 | this.password.Size = new System.Drawing.Size(234, 30);
219 | this.password.TabIndex = 50;
220 | this.password.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
221 | this.password.Enter += new System.EventHandler(this.password_Enter);
222 | this.password.Leave += new System.EventHandler(this.password_Leave);
223 | //
224 | // label5
225 | //
226 | this.siticoneTransition1.SetDecoration(this.label5, Siticone.UI.AnimatorNS.DecorationType.None);
227 | this.label5.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
228 | this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
229 | this.label5.Location = new System.Drawing.Point(111, 330);
230 | this.label5.Name = "label5";
231 | this.label5.Size = new System.Drawing.Size(156, 17);
232 | this.label5.TabIndex = 55;
233 | this.label5.Text = "Don\'t have an account?";
234 | this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
235 | this.label5.Click += new System.EventHandler(this.label5_Click);
236 | this.label5.MouseEnter += new System.EventHandler(this.label5_MouseEnter);
237 | this.label5.MouseLeave += new System.EventHandler(this.label5_MouseLeave);
238 | //
239 | // LauncherTimer
240 | //
241 | this.LauncherTimer.Tick += new System.EventHandler(this.LauncherTimer_Tick);
242 | //
243 | // fadeintimer
244 | //
245 | this.fadeintimer.Interval = 10;
246 | this.fadeintimer.Tick += new System.EventHandler(this.fadeintimer_Tick);
247 | //
248 | // pictureBox11
249 | //
250 | this.siticoneTransition1.SetDecoration(this.pictureBox11, Siticone.UI.AnimatorNS.DecorationType.None);
251 | this.pictureBox11.Image = global::Cookies_Loader_Base.Properties.Resources.giphy__1_;
252 | this.pictureBox11.Location = new System.Drawing.Point(47, 4);
253 | this.pictureBox11.Name = "pictureBox11";
254 | this.pictureBox11.Size = new System.Drawing.Size(276, 151);
255 | this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
256 | this.pictureBox11.TabIndex = 56;
257 | this.pictureBox11.TabStop = false;
258 | //
259 | // panel1
260 | //
261 | this.siticoneTransition1.SetDecoration(this.panel1, Siticone.UI.AnimatorNS.DecorationType.None);
262 | this.panel1.Location = new System.Drawing.Point(303, 133);
263 | this.panel1.Name = "panel1";
264 | this.panel1.Size = new System.Drawing.Size(37, 100);
265 | this.panel1.TabIndex = 57;
266 | //
267 | // panel2
268 | //
269 | this.siticoneTransition1.SetDecoration(this.panel2, Siticone.UI.AnimatorNS.DecorationType.None);
270 | this.panel2.Location = new System.Drawing.Point(32, 128);
271 | this.panel2.Name = "panel2";
272 | this.panel2.Size = new System.Drawing.Size(37, 100);
273 | this.panel2.TabIndex = 58;
274 | //
275 | // panel3
276 | //
277 | this.siticoneTransition1.SetDecoration(this.panel3, Siticone.UI.AnimatorNS.DecorationType.None);
278 | this.panel3.Location = new System.Drawing.Point(0, -5);
279 | this.panel3.Name = "panel3";
280 | this.panel3.Size = new System.Drawing.Size(367, 38);
281 | this.panel3.TabIndex = 59;
282 | //
283 | // Login
284 | //
285 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
286 | this.AutoValidate = System.Windows.Forms.AutoValidate.Disable;
287 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(39)))), ((int)(((byte)(42)))));
288 | this.ClientSize = new System.Drawing.Size(367, 441);
289 | this.Controls.Add(this.siticoneControlBox1);
290 | this.Controls.Add(this.siticoneControlBox2);
291 | this.Controls.Add(this.panel3);
292 | this.Controls.Add(this.panel2);
293 | this.Controls.Add(this.panel1);
294 | this.Controls.Add(this.label5);
295 | this.Controls.Add(this.label4);
296 | this.Controls.Add(this.label2);
297 | this.Controls.Add(this.status);
298 | this.Controls.Add(this.LoginBtn);
299 | this.Controls.Add(this.label1);
300 | this.Controls.Add(this.username);
301 | this.Controls.Add(this.password);
302 | this.Controls.Add(this.pictureBox11);
303 | this.siticoneTransition1.SetDecoration(this, Siticone.UI.AnimatorNS.DecorationType.None);
304 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
305 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
306 | this.Name = "Login";
307 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
308 | this.Text = "Loader";
309 | this.TransparencyKey = System.Drawing.Color.Maroon;
310 | this.Load += new System.EventHandler(this.Login_Load);
311 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
312 | this.ResumeLayout(false);
313 | this.PerformLayout();
314 |
315 | }
316 |
317 | // Token: 0x04000001 RID: 1
318 | private global::System.ComponentModel.IContainer components = null;
319 |
320 | // Token: 0x04000002 RID: 2
321 | private global::Siticone.UI.WinForms.SiticoneDragControl siticoneDragControl1;
322 |
323 | // Token: 0x04000004 RID: 4
324 | private global::Siticone.UI.WinForms.SiticoneControlBox siticoneControlBox1;
325 |
326 | // Token: 0x04000005 RID: 5
327 | private global::Siticone.UI.WinForms.SiticoneControlBox siticoneControlBox2;
328 |
329 | // Token: 0x04000009 RID: 9
330 | private global::Siticone.UI.WinForms.SiticoneTransition siticoneTransition1;
331 |
332 | // Token: 0x0400000A RID: 10
333 | private global::System.Windows.Forms.Label label1;
334 | private Siticone.UI.WinForms.SiticoneRoundedButton LoginBtn;
335 | private Siticone.UI.WinForms.SiticoneShadowForm siticoneShadowForm;
336 | private Siticone.UI.WinForms.SiticoneLabel status;
337 | private System.Windows.Forms.Label label2;
338 | private System.Windows.Forms.Label label4;
339 | private Bunifu.Framework.UI.BunifuMaterialTextbox username;
340 | private Bunifu.Framework.UI.BunifuMaterialTextbox password;
341 | private System.Windows.Forms.Timer LauncherTimer;
342 | private System.Windows.Forms.Label label5;
343 | private System.Windows.Forms.Timer fadeintimer;
344 | private System.Windows.Forms.PictureBox pictureBox11;
345 | private System.Windows.Forms.Panel panel1;
346 | private System.Windows.Forms.Panel panel2;
347 | private System.Windows.Forms.Panel panel3;
348 | }
349 | }
350 |
--------------------------------------------------------------------------------