Browse Source

change alpha channel of bracket highlighting colors

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/vbnet@5805 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Siegfried Pammer 16 years ago
parent
commit
1bdc261692
  1. 5
      src/AddIns/DisplayBindings/AvalonEdit.AddIn/Src/BracketHighlightRenderer.cs

5
src/AddIns/DisplayBindings/AvalonEdit.AddIn/Src/BracketHighlightRenderer.cs

@ -8,7 +8,6 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
using System.Windows.Media; using System.Windows.Media;
using ICSharpCode.AvalonEdit.Document; using ICSharpCode.AvalonEdit.Document;
using ICSharpCode.AvalonEdit.Rendering; using ICSharpCode.AvalonEdit.Rendering;
using ICSharpCode.SharpDevelop.Editor; using ICSharpCode.SharpDevelop.Editor;
@ -35,10 +34,10 @@ namespace ICSharpCode.AvalonEdit.AddIn
if (textView == null) if (textView == null)
throw new ArgumentNullException("textView"); throw new ArgumentNullException("textView");
this.borderPen = new Pen(Brushes.Blue, 1); this.borderPen = new Pen(new SolidColorBrush(Color.FromArgb(52, 0, 0, 255)), 1);
this.borderPen.Freeze(); this.borderPen.Freeze();
this.backgroundBrush = new SolidColorBrush(Color.FromArgb(50, 0, 0, 255)); this.backgroundBrush = new SolidColorBrush(Color.FromArgb(22, 0, 0, 255));
this.backgroundBrush.Freeze(); this.backgroundBrush.Freeze();
this.textView = textView; this.textView = textView;

Loading…
Cancel
Save