【WIN10】WIN2D——基本圖形的繪製

DEMO下載地址:http://yunpan.cn/c3iNuHFFAcr8h (提取码:8e48)

先看一個截圖:

繪製了一些基本形狀。

DEMO的繪製代碼都非常簡單,不想在博客裡細說了,看代碼更為清晰些。

可能繪製扇形的代碼有些麻煩些。

微軟是使用鐘錶的轉動方向(順時針)作為弧度運轉方向的,所以角度30度,是會在x座標下的,而不是通常的在x座標上面。

帖一下畫鐘錶的代碼,是非常簡單的:

        private void clock_Draw(CanvasControl sender, CanvasDrawEventArgs args)
        {
            float radius = (float)sender.ActualWidth / 2 - 4;
            Vector2 center = new Vector2((float)sender.ActualWidth / 2, (float)sender.ActualWidth / 2);

            for (int i = 0; i < 60; ++i)
            {
                int borderSize = 1;
                Vector2 begin = new Vector2(radius  + center.X - 3, center.Y);
                Vector2 end = new Vector2(radius + center.X, center.Y);

                if (i % 15 == 0)
                {
                    borderSize = 4;
                    begin = new Vector2(center.X + radius - 15, center.Y);
                }
                else if (i % 5 == 0)
                {
                    borderSize = 2;
                    begin = new Vector2(radius + center.X - 10, center.Y);
                }

                args.DrawingSession.Transform = Matrix3x2.CreateRotation(TimeValue2Radion(i, 60), center);
                args.DrawingSession.DrawLine(begin, end, Color.FromArgb(255, 255, 255, 255), borderSize);
            }

            args.DrawingSession.DrawCircle(center, radius, Color.FromArgb(255, 255, 255, 255), 2);

            // 結點處是圓,指向處為三角
            CanvasStrokeStyle lineStyle = new CanvasStrokeStyle();
            lineStyle.StartCap = CanvasCapStyle.Round;
            lineStyle.EndCap = CanvasCapStyle.Triangle;

            // 時針
            float hours = DateTime.Now.Hour % 12 + DateTime.Now.Minute / 60.0f + DateTime.Now.Second / 60.0f / 24.0f; // 12小時制
            float intervalHours = hours - 3.0f; // 3點是0度
            float hourRadian = TimeValue2Radion(intervalHours, 12);
            args.DrawingSession.Transform = Matrix3x2.CreateRotation(hourRadian, center);
            args.DrawingSession.DrawLine(center, new Vector2(center.X + 80, center.Y), Color.FromArgb(255, 255, 255, 255), 5, lineStyle);

            // 分針
            float minutes = DateTime.Now.Minute+ DateTime.Now.Second / 60.0f;
            float intervalMinutes = minutes - 15; // 15分钟是0度
            float minuteRadian = TimeValue2Radion(intervalMinutes, 60);
            args.DrawingSession.Transform = Matrix3x2.CreateRotation(minuteRadian, center);
            args.DrawingSession.DrawLine(center, new Vector2(center.X + 100, center.Y), Color.FromArgb(255, 255, 255, 255), 2, lineStyle);

            // 秒針
            float seconds = DateTime.Now.Second;
            float intervalSeconds = seconds - 15; // 15秒是0度
            float secondRadian = TimeValue2Radion(intervalSeconds, 60);
            args.DrawingSession.Transform = Matrix3x2.CreateRotation(secondRadian, center);
            args.DrawingSession.DrawLine(center, new Vector2(center.X + 120, center.Y), Color.FromArgb(255, 255, 255, 255));
        }

        private float TimeValue2Radion(float intervalTime, int total)
        {
            return intervalTime / total * 360 * (float)Math.PI / 180;
        }

因為今天只寫了這麼一個例子,就先發一個了。

後面再一一補上。

时间: 2024-10-14 22:33:31

【WIN10】WIN2D——基本圖形的繪製的相关文章

【WIN10】WIN2D——繪製文字

先看下截圖: 做了幾個效果:普通.倒影.陰影.歌詞. 普通效果代碼: private void normal_Draw(Microsoft.Graphics.Canvas.UI.Xaml.CanvasControl sender, Microsoft.Graphics.Canvas.UI.Xaml.CanvasDrawEventArgs args) { CanvasTextFormat fmt = new CanvasTextFormat(); fmt.FontFamily = "Vladimi

使用Astah繪製UML圖形(转)

http://www.dotblogs.com.tw/clark/archive/2015/02/12/149483.aspx

[EmguCV|WinForm] 使用EmguCV內建直方圖工具繪製直方圖(Histogram)-直方圖(Histogram)系列 (1)

https://dotblogs.com.tw/v6610688/archive/2013/12/20/emgucv_draw_histogram_histogrambox_histogramviewer.aspx //2.使用HistogramBox imgHistogramBox.GenerateHistograms(loadImg, 32); imgHistogramBox.Refresh(); //更新資料 imgHistogramBox.Show();

使用tesseract識別簡單的圖形碼

圖示: 運行效果: 實現代碼: Add-Type -AssemblyName System.Drawing function Identify ($path) { $img=[System.Drawing.Bitmap]::FromFile($path) for ($i = 0; $i -lt $img.Width; $i++) { for ($j = 0; $j -lt $img.Height; $j++) { $_p =$img.GetPixel($i,$j) $_pt=($_p.R+$_p

leach协议matlab仿真代码

http://www.ilovematlab.cn/thread-177006-1-1.html LEACH協議clear;%清除內存變量 xm=100;%x軸範圍ym=100;%y軸範圍 sink.x=0.5*xm;%基站x軸sink.y=0.5*ym;%基站y軸 n=100;%節點總數 p=0.1;%簇頭概率 E0=0.02;%初始能量ETX=50*0.000000000001;%傳輸能量,每bitERX=50*0.000000000001;%接收能量,每bitEfs=10*0.000000

matplotlib+pyqt4 内容整理

最近学习了matplotlib的内容,在这里做一些总结. 参考:vamei博客(Python的也可以看其教程)http://www.cnblogs.com/vamei/archive/2013/01/30/2879700.html http://reverland.org/python/2012/09/07/matplotlib-tutorial/ http://myshare.dscloud.me/scipydoc/matplotlib_intro.html#axis(这个文章很好的解释了fi

[R] 繪圖 Par 函数

本篇內文主引用 https://zhuanlan.zhihu.com/p/21394945 之內容再稍加整理並參照下方有用資源 [rdocumentation] https://www.rdocumentation.org/packages/graphics/versions/3.5.2/topics/par [Quick-R] https://www.statmethods.net/advgraphs/parameters.html par 可以設置的繪圖相關參數有3 類: 只可以查詢而不可以

PCB成型製程介紹

PCB成型製程在電子構裝中所扮演的角色 下圖是電腦主機的內部組成 我們將以插在主機板上的一片 USB擴充卡來說明PCB成型製 程在電子構裝中所扮演的角色 PCB成型製程的子製程 USB擴充卡要插入主機板上的插槽進行電子訊號的聯結.為了降低板子 插入時的阻力,會在板子的邊緣做出一斜面(如圖所示),要做出這個斜邊, 就要靠斜邊製程. 斜邊製程 要在板邊做出斜邊,主要是以端銑刀對板子邊緣進行旋轉切削. 斜邊製程品質異常範例 斜邊深度大時,會使用二支Spindle作兩段式作業,但二支Spindle的角度

web頁面上的那些圖標

在一個HTML結構的頁面中,使用圖標最常接觸的是標籤<img>和css屬性background-image.<img>純粹是為了顯示圖片而添加的標籤,適用於尺寸大的圖片,強調圖片的信息,不屬於頁面圖標的範疇(在web設計中,圖標和圖片是兩種概念:圖標在某種程度可有可惡,起到修飾點綴的效果,本身沒有什麼信息量:而圖片不同,圖片也是頁面欲展示給用戶的信息):因此,依賴<img>標籤實現的點綴圖標的作用的,都是不那麼合理的,因為<img>不是幹這種事情的,對搜索引