From eee441e9309532b0220926fda560ca0d35528f9c Mon Sep 17 00:00:00 2001 From: Nicholas Lederer Date: Fri, 23 Nov 2018 17:51:32 -0800 Subject: [PATCH] dark mode supported in VS. also added message wrapping. only tested with VS2017 --- CPPCheckPlugin/MainToolWindowUI.xaml | 196 ++++++++++++++---------- CPPCheckPlugin/MainToolWindowUI.xaml.cs | 9 ++ 2 files changed, 122 insertions(+), 83 deletions(-) diff --git a/CPPCheckPlugin/MainToolWindowUI.xaml b/CPPCheckPlugin/MainToolWindowUI.xaml index 6368261..44dfdc7 100644 --- a/CPPCheckPlugin/MainToolWindowUI.xaml +++ b/CPPCheckPlugin/MainToolWindowUI.xaml @@ -5,108 +5,138 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:vsp="clr-namespace:Microsoft.VisualStudio.PlatformUI;assembly=Microsoft.VisualStudio.Shell.11.0" mc:Ignorable="d" - d:DesignHeight="300" d:DesignWidth="300"> - - - - - - + d:DesignHeight="300" d:DesignWidth="400"> - - + + + + + + + + - - + - - + - - - + + - - + - - + - - + - - - + + - - + - - + - - - - - - - - - - - - - - - - - - - File - - - - - Line - - - - - Message - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + File + + + + + Line + + + + + + + + + + Message + + + + + diff --git a/CPPCheckPlugin/MainToolWindowUI.xaml.cs b/CPPCheckPlugin/MainToolWindowUI.xaml.cs index 965fec1..5060025 100644 --- a/CPPCheckPlugin/MainToolWindowUI.xaml.cs +++ b/CPPCheckPlugin/MainToolWindowUI.xaml.cs @@ -259,6 +259,15 @@ public Problem Problem Problem _problem; } + private void ListView_SelectionChanged() + { + } + private void ListView_SelectionChanged_1(object sender, SelectionChangedEventArgs e) + { + } + private void ListView_SelectionChanged_2(object sender, SelectionChangedEventArgs e) + { + } } public class DeleteObjectInvoker