Beispiel #1
0
        /// <summary>
        /// Standard constructor for the tool window.
        /// </summary>
        public CloneIntersectionsToolWindow()
            : base(null)
        {
            // Set the window title reading it from the resources.
            Caption = Res.CloneIntersectionsToolWindowTitle;

            // Set the image that will appear on the tab of the window frame
            // when docked with an other window.
            // The resource ID corresponds 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;

            _control = new CloneIntersectionsControl();
        }
Beispiel #2
0
 public SelectionTracker(CloneIntersectionsControl cloneIntersectionsControl)
 {
     _cloneIntersectionsControl = cloneIntersectionsControl;
 }