Esempio n. 1
0
 private void changeObjectTextColor()
 {
     if (tabColors.IsSelected)
     {
         ObjectTextColor = Colors.ShowColorDialog(ObjectTextColor, this);
     }
 }
Esempio n. 2
0
 private void changeRoomBorderColor()
 {
     if (tabColors.IsSelected)
     {
         RoomBorderColor = Colors.ShowColorDialog(RoomBorderColor, this);
     }
 }
Esempio n. 3
0
 // Added for Room specific colors
 private void changeSecondFillColor()
 {
     if (tabColors.IsSelected)
     {
         SecondFillColor = Colors.ShowColorDialog(SecondFillColor, this);
     }
 }
Esempio n. 4
0
 private void onChangeColor(object sender, EventArgs e)
 {
     Color[m_colorListBox.SelectedIndex] = Colors.ShowColorDialog(Color[m_colorListBox.SelectedIndex], this);
     m_colorListBox.Invalidate();
 }
Esempio n. 5
0
 private void btnRegionTextColor_Click(object sender, EventArgs e)
 {
     RegionToChange.TextColor = Colors.ShowColorDialog(RegionToChange.TextColor, this);
     refreshColorPanel();
 }
 private void changeConnectionColor()
 {
     ConnectionColor = Colors.ShowColorDialog(ConnectionColor, this);
 }