LayoutFarm.UI.UISurfaceViewportControl.PaintMe C# (CSharp) Méthode

PaintMe() public méthode

public PaintMe ( ) : void
Résultat void
        public void PaintMe()
        {
            this.winBridge.PaintToOutputWindow();
        }
        public void PaintMeFullMode()

Usage Example

Exemple #1
0
        private void ListBox3_MouseDown1(object sender, System.Windows.Forms.MouseEventArgs e)
        {
#if DEBUG
            dbugLayoutMsg msg = listBox3.SelectedItem as dbugLayoutMsg;
            if (msg == null)
            {
                return;
            }
            switch (msg.msgOwnerKind)
            {
            case dbugLayoutMsgOwnerKind.Layer:
            {
                RenderElementLayer layer = (RenderElementLayer)msg.owner;
            }
            break;

            case dbugLayoutMsgOwnerKind.Line:
            {
            }
            break;

            case dbugLayoutMsgOwnerKind.VisualElement:
            {
                RenderElement ve = (RenderElement)msg.owner;
                dbugHelper01.dbugVE_HighlightMe = ve;
                lastestSelectVE = ve;

                vwport.PaintMe();
            }
            break;
            }
#endif
        }
All Usage Examples Of LayoutFarm.UI.UISurfaceViewportControl::PaintMe