- Congig 추가
- friction.exe -> squeak.exe - 색상 변경 - analysis 기준 변경
This commit is contained in:
@@ -4,6 +4,7 @@ using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
@@ -25,6 +26,9 @@ namespace friction
|
||||
Theme.Apply(dgvData);
|
||||
Theme.Apply(lvColumn);
|
||||
|
||||
typeof(DataGridView).InvokeMember("DoubleBuffered",
|
||||
BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.SetProperty,
|
||||
null, dgvData, new object[] { true });
|
||||
dgvData.CellFormatting += DgvData_CellFormatting;
|
||||
}
|
||||
|
||||
@@ -45,6 +49,7 @@ namespace friction
|
||||
public void UpdateData(DataHandler data)
|
||||
{
|
||||
dgvData.DataSource = data.GetData();
|
||||
dgvData.DefaultCellStyle.Format = "N2";
|
||||
|
||||
Dictionary<string, bool> CacheChecked = new Dictionary<string, bool>();
|
||||
foreach (ListViewItem item in lvColumn.Items)
|
||||
|
||||
Reference in New Issue
Block a user