コード例 #1
0
ファイル: PointByCoordinates.cs プロジェクト: ondrej11/o106
 public override void Recalculate()
 {
     if (XExpression == null ||
         XExpression.Value == null ||
         YExpression == null ||
         YExpression.Value == null)
     {
         return;
     }
     Coordinates = new System.Windows.Point(XExpression.Value(), YExpression.Value());
     Exists      = Coordinates.Exists();
 }
コード例 #2
0
ファイル: PointByCoordinates.cs プロジェクト: ondrej11/o106
 public override void Recalculate()
 {
     if (XExpression == null
         || XExpression.Value == null
         || YExpression == null
         || YExpression.Value == null)
     {
         return;
     }
     Coordinates = new System.Windows.Point(XExpression.Value(), YExpression.Value());
     Exists = Coordinates.Exists();
 }