當前位置: 首頁>>代碼示例>>C#>>正文


C# MouseEventArgs.ToTEMouseArgs方法代碼示例

本文整理匯總了C#中System.Windows.Input.MouseEventArgs.ToTEMouseArgs方法的典型用法代碼示例。如果您正苦於以下問題:C# MouseEventArgs.ToTEMouseArgs方法的具體用法?C# MouseEventArgs.ToTEMouseArgs怎麽用?C# MouseEventArgs.ToTEMouseArgs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Windows.Input.MouseEventArgs的用法示例。


在下文中一共展示了MouseEventArgs.ToTEMouseArgs方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: SetParseTree

        /* 
        /// <summary>
        /// Sets the current parsetree and updates the overlay.
        /// </summary>
        /// <param name="t">The new parsetree.</param>
        /// <param name="tBB">The new bounding box.</param>
       public void SetParseTree(Tikz_ParseTree t, Rect tBB)
        {
            BB = tBB;
            ParseTree = t;
            //curSel = null; //curDragged = null;
            Resolution = Resolution; // to recalc size
            ActivateDefaultTool(); // to reset current tool
            RedrawObjects();
        } */


        #region Events forwarded to Current tool
        private void canvas1_MouseMove(object sender, MouseEventArgs e)
        {
            Point mousep = e.GetPosition(canvas1);
            // convert to bottom left coordinates
            Point p = new Point(mousep.X, Height - mousep.Y);

            TEMouseArgs ee = e.ToTEMouseArgs();
            TheModel.CurrentTool.OnMouseMove(p, ee);
            e.Handled = ee.Handled;

            
            // display the current mouse position
         /*   p.Y /= Resolution;
            p.X /= Resolution;
            p.X += BB.X;
            p.Y += BB.Y;

            String s = "(" + String.Format("{0:f1}", p.X) + "; " + String.Format("{0:f1}", p.Y) + ")";
            ((MainWindow)Application.Current.Windows[0]).AddStatusBarCoordinate(s);            
         */ 
        }
開發者ID:JoeyEremondi,項目名稱:tikzedt,代碼行數:39,代碼來源:PdfOverlay.xaml.cs


注:本文中的System.Windows.Input.MouseEventArgs.ToTEMouseArgs方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。