Inheritance: SvgTransform
コード例 #1
0
ファイル: SvgMenuWidget.cs プロジェクト: stahlnow/Timeliner
 public void Show(PointF point)
 {
     Transforms[0] = new SvgTranslate(Math.Max(0, point.X - FWidth/2f), Math.Max(0, point.Y - FHeight/2f));
     Visible = true;
 }