mirror of
https://github.com/Hunter-Raff/e-ReaderCardCreator.git
synced 2026-07-11 08:42:43 +01:00
Added Dark Mode
Dark mode
This commit is contained in:
+447
-418
File diff suppressed because it is too large
Load Diff
@@ -38,7 +38,7 @@ namespace AC_e_Reader_Card_Creator
|
||||
private void LoadDirectories()
|
||||
{
|
||||
string[] directoryPath = { @"Project Files\Decompression\eCard", Common.RAW_OUTPUT, Common.BIN_OUTPUT, Common.VPK_OUTPUT, Common.DEC_OUTPUT, Common.BMP_OUTPUT };
|
||||
foreach(string dir in directoryPath)
|
||||
foreach (string dir in directoryPath)
|
||||
{
|
||||
if (!Directory.Exists(dir))
|
||||
{
|
||||
@@ -76,7 +76,7 @@ namespace AC_e_Reader_Card_Creator
|
||||
int maxCharBody = textBox_Body.MaxLength;
|
||||
header_Body.Text = $"Body ( {currentCharCount} / {maxCharBody} )";
|
||||
|
||||
List<Label> letter_labels = new List<Label> {
|
||||
List<Label> letter_labels = new List<Label> {
|
||||
label_Greeting, label_Line1, label_Line2, label_Line3, label_Line4, label_Line5, label_Line6, label_Closing
|
||||
};
|
||||
int[] fontColor = stationeryFontRGB[comboBox_Stationery.Text];
|
||||
@@ -95,8 +95,8 @@ namespace AC_e_Reader_Card_Creator
|
||||
e.Handled = true;
|
||||
}
|
||||
|
||||
List<Label> letter_labels = new List<Label> {
|
||||
label_Greeting, label_Line1, label_Line2, label_Line3, label_Line4, label_Line5, label_Line6, label_Closing
|
||||
List<Label> letter_labels = new List<Label> {
|
||||
label_Greeting, label_Line1, label_Line2, label_Line3, label_Line4, label_Line5, label_Line6, label_Closing
|
||||
};
|
||||
int[] fontColor = stationeryFontRGB[comboBox_Stationery.Text];
|
||||
Common.HandleLetterBody(letter_labels, textBox_Body, fontColor);
|
||||
@@ -135,8 +135,8 @@ namespace AC_e_Reader_Card_Creator
|
||||
if (itemID.Length == 6)
|
||||
{
|
||||
string item_name = Common.LookupListValue(itemID, Common.ITEM_LIST);
|
||||
|
||||
if(item_name != null)
|
||||
|
||||
if (item_name != null)
|
||||
{
|
||||
comboBox_ItemName.SelectedItem = item_name;
|
||||
}
|
||||
@@ -165,7 +165,7 @@ namespace AC_e_Reader_Card_Creator
|
||||
string[] stationery_RGB_s = stationery[2].Split('-');
|
||||
|
||||
List<int> stationery_RGB_i = new List<int>();
|
||||
|
||||
|
||||
for (int i = 0; i < stationery_RGB_s.Length; i++)
|
||||
{
|
||||
stationery_RGB_i.Add(int.Parse(stationery_RGB_s[i]));
|
||||
@@ -255,8 +255,8 @@ namespace AC_e_Reader_Card_Creator
|
||||
pictureBox_Stationery.BackgroundImage = stationeryImage;
|
||||
}
|
||||
|
||||
List<Label> letter_labels = new List<Label> {
|
||||
label_Greeting, label_Line1, label_Line2, label_Line3, label_Line4, label_Line5, label_Line6, label_Closing
|
||||
List<Label> letter_labels = new List<Label> {
|
||||
label_Greeting, label_Line1, label_Line2, label_Line3, label_Line4, label_Line5, label_Line6, label_Closing
|
||||
};
|
||||
int[] fontColor = stationeryFontRGB[comboBox_Stationery.Text];
|
||||
foreach (Label letter_line in letter_labels)
|
||||
@@ -400,7 +400,7 @@ namespace AC_e_Reader_Card_Creator
|
||||
MessageBox.Show($"An error occurred: {ex.Message}", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void OpenCharCard(object sender, EventArgs e)
|
||||
{
|
||||
@@ -533,5 +533,77 @@ namespace AC_e_Reader_Card_Creator
|
||||
{
|
||||
MessageBox.Show(Common.CREDIT, "e-Reader Character Card Creator");
|
||||
}
|
||||
|
||||
private void eReaderCCC_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private bool isDarkModeEnabled = false;
|
||||
|
||||
private void enableDarkModeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
// Toggle between dark and light modes
|
||||
isDarkModeEnabled = !isDarkModeEnabled;
|
||||
|
||||
// Set the background color of the form based on the mode
|
||||
this.BackColor = isDarkModeEnabled ? Color.FromArgb(31, 31, 31) : Color.White;
|
||||
|
||||
// Set the foreground colors for all controls on the form
|
||||
foreach (Control control in this.Controls)
|
||||
{
|
||||
// Skip ToolStrip controls
|
||||
if (control is ToolStrip)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (isDarkModeEnabled)
|
||||
{
|
||||
// Set dark mode colors
|
||||
control.BackColor = Color.FromArgb(31, 31, 31);
|
||||
control.ForeColor = Color.FromArgb(255, 255, 255); // White
|
||||
|
||||
// You can add logic here to set the border color for controls like textboxes, buttons, etc.
|
||||
if (control is TextBox textBox)
|
||||
{
|
||||
textBox.BorderStyle = BorderStyle.FixedSingle;
|
||||
}
|
||||
else if (control is Button button)
|
||||
{
|
||||
button.FlatStyle = FlatStyle.Flat;
|
||||
button.FlatAppearance.BorderColor = Color.FromArgb(255, 255, 255); // White
|
||||
}
|
||||
else if (control is ComboBox comboBox)
|
||||
{
|
||||
comboBox.BackColor = Color.White;
|
||||
comboBox.ForeColor = Color.Black; // Set dropdown text color to black
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Revert to the original light mode colors
|
||||
control.BackColor = Color.White;
|
||||
control.ForeColor = Color.Black;
|
||||
|
||||
// Revert border styles
|
||||
if (control is TextBox textBox)
|
||||
{
|
||||
textBox.BorderStyle = BorderStyle.None;
|
||||
}
|
||||
else if (control is Button button)
|
||||
{
|
||||
button.FlatStyle = FlatStyle.Standard;
|
||||
button.FlatAppearance.BorderColor = Color.White;
|
||||
}
|
||||
else if (control is ComboBox comboBox)
|
||||
{
|
||||
// Set the ComboBox back to its original color if needed
|
||||
comboBox.BackColor = SystemColors.Window;
|
||||
comboBox.ForeColor = SystemColors.ControlText; // Set dropdown text color to default
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
|
||||
Example:
|
||||
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
@@ -26,36 +26,36 @@
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
|
||||
Reference in New Issue
Block a user