Interaction logic for TeamPilgrimPendingChangesControl.xaml
상속: System.Windows.Controls.UserControl
        public PendingChangesWindow()
            : base(null)
        {
            this.Caption = Resources.PendingChangesToolWindowTitle;

            // 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.
            this.BitmapResourceID = 301;
            this.BitmapIndex = 1;

            // This is the user control hosted by the tool window; Note that, even if this class implements IDisposable,
            // we are not calling Dispose on this object. This is because ToolWindowPane calls Dispose on
            // the object returned by the Content property.
            var pendingChangesControl = new PendingChangesControl();
            base.Content = pendingChangesControl;

            pendingChangesControl.DataContext = TeamPilgrimPackage.TeamPilgrimServiceModel;
        }
예제 #2
0
        public PendingChangesWindow()
            : base(null)
        {
            this.Caption = Resources.PendingChangesToolWindowTitle;

            // 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.
            this.BitmapResourceID = 301;
            this.BitmapIndex      = 1;

            // This is the user control hosted by the tool window; Note that, even if this class implements IDisposable,
            // we are not calling Dispose on this object. This is because ToolWindowPane calls Dispose on
            // the object returned by the Content property.
            var pendingChangesControl = new PendingChangesControl();

            base.Content = pendingChangesControl;

            pendingChangesControl.DataContext = TeamPilgrimPackage.TeamPilgrimServiceModel;
        }