예제 #1
0
 private void Dispose(bool disposing)
 {
     if (disposing && this.m_sharedFont != null)
     {
         this.m_sharedFont.Dispose();
         this.m_sharedFont = null;
     }
 }
예제 #2
0
 public CanvasFont(CanvasFont copyFont)
 {
     this.m_gdiFont              = copyFont.GDIFont;
     this.m_stringFormat         = copyFont.TrimStringFormat;
     this.m_writingModeTopBottom = copyFont.WritingModeTopBottom;
 }
예제 #3
0
 public TextBoxSharedInfo(CanvasFont font, int sharedState)
 {
     this.m_sharedFont  = font;
     this.m_sharedState = sharedState;
 }