1
0
mirror of synced 2024-11-15 03:27:38 +01:00
Switch-Toolbox/File_Format_Library/GUI/BFLYT/LayoutPartsEditor.cs

29 lines
718 B
C#
Raw Normal View History

2019-09-05 22:24:03 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Toolbox.Library;
using Toolbox.Library.Forms;
namespace LayoutBXLYT
{
public partial class LayoutPartsEditor : LayoutDocked
{
public LayoutPartsEditor()
{
InitializeComponent();
listView1.BackColor = FormThemes.BaseTheme.FormBackColor;
listView1.ForeColor = FormThemes.BaseTheme.FormForeColor;
BackColor = FormThemes.BaseTheme.FormBackColor;
ForeColor = FormThemes.BaseTheme.FormForeColor;
}
}
}