Ejemplo n.º 1
0
 public void dbug_LayoutTraceBeginContext(dbugVisualRootMsg msg, RenderElement ve)
 {
     if (dbugLastestDebugVisualLay != null)
     {
         dbugLastestDebugVisualLay.BeginNewContext(); dbugLastestDebugVisualLay.WriteInfo(msg.msg, ve);
     }
 }
Ejemplo n.º 2
0
 public void dbug_PushLayoutTraceMessage(dbugVisualRootMsg msg, RenderElement ve)
 {
     if (dbugLastestDebugVisualLay != null)
     {
         dbugLastestDebugVisualLay.WriteInfo(msg.msg, ve);
     }
 }
Ejemplo n.º 3
0
 public void dbug_PushLayoutTraceMessage(dbugVisualRootMsg msg, dbugLayoutInfo layer)
 {
     if (dbugLastestDebugVisualLay != null)
     {
         dbugLastestDebugVisualLay.WriteInfo(msg.msg, layer);
     }
 }
Ejemplo n.º 4
0
 public void dbug_PushInvalidateMsg(dbugVisualRootMsg msg, RenderElement ve)
 {
     if (this.dbugEnableGraphicInvalidateTrace && dbugGraphicInvalidateTracer != null)
     {
         dbugGraphicInvalidateTracer.WriteInfo(msg.msg, ve);
     }
 }
Ejemplo n.º 5
0
 public void dbug_LayoutTraceEndContext(dbugVisualRootMsg msg, RenderElement ve)
 {
     if (dbugLastestDebugVisualLay != null)
     {
         dbugLastestDebugVisualLay.WriteInfo(msg.msg, ve);
         dbugLastestDebugVisualLay.EndCurrentContext();
     }
 }
Ejemplo n.º 6
0
 public void dbug_PushLayoutTraceMessage(dbugVisualRootMsg msg, RenderElement ve)
 {
     if (dbugLastestDebugVisualLay != null)
     {
         dbugLastestDebugVisualLay.WriteInfo(msg.msg, ve);
     }
 }
Ejemplo n.º 7
0
 public void dbug_PushLayoutTraceMessage(dbugVisualRootMsg msg, int number)
 {
     if (dbugLastestDebugVisualLay != null)
     {
         dbugLastestDebugVisualLay.WriteInfo(msg.msg + number);
     }
 }
Ejemplo n.º 8
0
 public void dbug_PushInvalidateMsg(dbugVisualRootMsg msg, RenderElement ve)
 {
     if (this.dbugEnableGraphicInvalidateTrace && dbugGraphicInvalidateTracer != null)
     {
         dbugGraphicInvalidateTracer.WriteInfo(msg.msg, ve);
     }
 }