- 글자 크기와 툴바 아이콘 크기 조정

- Material compatibility table 리포트에 추가
- Material compatibility table 정렬되지 않도록
- 탭 패널 아이콘 적용

Radar Graph
- 항목의 폰트 크기 조정
- 영역에 색 지정 데이터는 라인으로
- 이 창을 띄울 땐 무조건 All이 선택되도록
- 데이터가 3개보다 적을 때 팝업

Trend Graph
- 재질 쌍 표시
- 영역 색을 조정

Analysis Table
- 재질 더블클릭 시 Material Table이 선택
This commit is contained in:
2017-06-28 01:26:07 +09:00
parent fae1f8b7c9
commit 879b3abda4
22 changed files with 37375 additions and 129 deletions

View File

@@ -53,6 +53,7 @@ namespace friction
Theme.Apply(groupBox1);
Theme.Apply(rbHumidity);
Theme.Apply(rbTemp);
lbPair.ForeColor = Theme.Orange;
@@ -76,7 +77,7 @@ namespace friction
Fill = new SolidColorBrush
{
Color = System.Windows.Media.Color.FromArgb(Theme.Red.A, Theme.Red.R, Theme.Red.G, Theme.Red.B),
Opacity = .75
Opacity = .25
}
},
new AxisSection
@@ -86,7 +87,7 @@ namespace friction
Fill = new SolidColorBrush
{
Color = System.Windows.Media.Color.FromArgb(Theme.Yellow.A, Theme.Yellow.R, Theme.Yellow.G, Theme.Yellow.B),
Opacity = .75
Opacity = .25
}
},
new AxisSection
@@ -96,7 +97,7 @@ namespace friction
Fill = new SolidColorBrush
{
Color = System.Windows.Media.Color.FromArgb(Theme.Green.A, Theme.Green.R, Theme.Green.G, Theme.Green.B),
Opacity = .75
Opacity = .25
}
}
}
@@ -181,7 +182,7 @@ namespace friction
System.Windows.Media.Brushes.Green.Clone(),
System.Windows.Media.Brushes.IndianRed.Clone() };
foreach (var brush in brushes)
brush.Opacity = 0.75;
brush.Opacity = 1;
trendChart.Series = new SeriesCollection
{
@@ -212,6 +213,7 @@ namespace friction
Values = TrendPoints,
PointGeometry = DefaultGeometries.None,
StrokeThickness = 4,
Stroke = System.Windows.Media.Brushes.Orange,
},
};
@@ -426,6 +428,8 @@ namespace friction
m_CurSpring = strSpring;
m_CurTable = strTable;
m_GraphType = Type;
lbPair.Text = string.Format("{0} vs {1}", strSpring, strTable);
}
private void rbHumidity_CheckedChanged(object sender, EventArgs e)