コード例 #1
0
 public void endHandler(object sender, EndMethodObject obj)
 {
     _window.Dispatcher.Invoke(DispatcherPriority.ContextIdle, new Action(delegate()
     {
         _three.Drow();
         _window.Scroll.ScrollToHorizontalOffset(_window.ScrollCanvas.Width / 2);
         _three.SelectBlockMethod("Rect");
         _window.ResultMecthod.Content = $"X*({obj.X} , {obj.Y}) F(x)={obj.D}";
     }));
 }
コード例 #2
0
 private static void endHandler(object sender, EndMethodObject obj)
 {
     Console.WriteLine($"Результат: X*({obj.X} , {obj.Y}) f* = {obj.D}");
 }