LogViewer.CountPanel.CountPanel C# (CSharp) Method

CountPanel() public method

public CountPanel ( ) : System
return System
        public CountPanel()
        {
            //labelDebugCount.Content = string.Format("{0:#,#}  ", DebugCount)
            InitializeComponent();
            imageError.Source = Imaging.CreateBitmapSourceFromHIcon(SystemIcons.Error.Handle, Int32Rect.Empty, null);
            imageInfo.Source = Imaging.CreateBitmapSourceFromHIcon(SystemIcons.Information.Handle, Int32Rect.Empty, null);
            imageWarn.Source = Imaging.CreateBitmapSourceFromHIcon(SystemIcons.Warning.Handle, Int32Rect.Empty, null);
            imageDebug.Source = Imaging.CreateBitmapSourceFromHIcon(SystemIcons.Question.Handle, Int32Rect.Empty, null);
        }
CountPanel