public IncludedAssembliesTreeView(CodeCoverageWindow parent, string assembliesToInclude)
     : base(new TreeViewState())
 {
     m_AssembliesToInclude = assembliesToInclude;
     m_Parent = parent;
     showAlternatingRowBackgrounds = true;
     showBorder = true;
     Reload();
 }
コード例 #2
0
 /// <summary>
 ///     Standard constructor for the tool window.
 /// </summary>
 public CodeCoverageToolWindow() :
     base(null)
 {
     // Set the window title reading it from the resources.
     Caption = "Code Coverage";
     // Set the image that will appear on the tab of the window frame
     // when docked with an other window
     // The resource ID correspond to the one defined in the resx file
     // while the Index is the offset in the bitmap strip. Each image in
     // the strip being 16x16.
     //   BitmapResourceID = 301;
     //   BitmapIndex = 1;
     Content = new CodeCoverageWindow();
 }
コード例 #3
0
 public IncludedAssembliesPopupWindow(CodeCoverageWindow parent, string assembliesToInclude)
 {
     m_SearchField = new SearchField();
     m_TreeView    = new IncludedAssembliesTreeView(parent, assembliesToInclude);
 }
 public PathsToRemoveDropDownMenu(CodeCoverageWindow parent, PathFilterType type)
 {
     m_Parent         = parent;
     m_PathFilterType = type;
 }
 public PathsToAddHandler(CodeCoverageWindow parent, PathFilterType type)
 {
     m_Parent         = parent;
     m_PathFilterType = type;
 }