{"id":10543,"date":"2024-03-14T12:19:14","date_gmt":"2024-03-14T12:19:14","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/"},"modified":"2025-08-04T00:55:46","modified_gmt":"2025-08-04T00:55:46","slug":"how-to-draw-dynamic-curves-in-mfc","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/","title":{"rendered":"MFC Dynamic Curves: OnDraw Tutorial"},"content":{"rendered":"<p>To draw dynamic curves in MFC, you can achieve this by overriding the OnDraw function of the window class. The specific steps are as follows:<\/p>\n<ol>\n<li>In the header file of the Window class, define the data structure for the curve that needs to be drawn, for example:<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">CMyView<\/span> : <span class=\"hljs-keyword\">public<\/span> CView\r\n{\r\n    <span class=\"hljs-comment\">\/\/ \u66f2\u7ebf\u6570\u636e\u7ed3\u6784<\/span>\r\n    CArray&lt;CPoint, CPoint&gt; m_points;\r\n};\r\n<\/code><\/pre>\n<ol>\n<li>Override the OnDraw function in the implementation file of the window class to draw a curve.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">CMyView::OnDraw<\/span><span class=\"hljs-params\">(CDC* pDC)<\/span>\r\n<\/span>{\r\n    CRect rect;\r\n    <span class=\"hljs-built_in\">GetClientRect<\/span>(&amp;rect);\r\n    \r\n    <span class=\"hljs-comment\">\/\/ \u521b\u5efa\u753b\u7b14<\/span>\r\n    <span class=\"hljs-function\">CPen <span class=\"hljs-title\">pen<\/span><span class=\"hljs-params\">(PS_SOLID, <span class=\"hljs-number\">2<\/span>, RGB(<span class=\"hljs-number\">0<\/span>, <span class=\"hljs-number\">0<\/span>, <span class=\"hljs-number\">255<\/span>))<\/span><\/span>;\r\n    CPen* pOldPen = pDC-&gt;<span class=\"hljs-built_in\">SelectObject<\/span>(&amp;pen);\r\n    \r\n    <span class=\"hljs-comment\">\/\/ \u7ed8\u5236\u66f2\u7ebf<\/span>\r\n    <span class=\"hljs-keyword\">for<\/span> (<span class=\"hljs-type\">int<\/span> i = <span class=\"hljs-number\">1<\/span>; i &lt; m_points.<span class=\"hljs-built_in\">GetSize<\/span>(); i++)\r\n    {\r\n        pDC-&gt;<span class=\"hljs-built_in\">MoveTo<\/span>(m_points[i - <span class=\"hljs-number\">1<\/span>]);\r\n        pDC-&gt;<span class=\"hljs-built_in\">LineTo<\/span>(m_points[i]);\r\n    }\r\n    \r\n    pDC-&gt;<span class=\"hljs-built_in\">SelectObject<\/span>(pOldPen);\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>Add a function in the window class to update the curve data, and call this function when the curve needs to be updated.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">CMyView::AddPoint<\/span><span class=\"hljs-params\">(CPoint point)<\/span>\r\n<\/span>{\r\n    m_points.<span class=\"hljs-built_in\">Add<\/span>(point);\r\n    <span class=\"hljs-built_in\">Invalidate<\/span>();\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>Call the AddPoint function where you need to draw a curve, and add a new data point.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">CMyView::OnMouseMove<\/span><span class=\"hljs-params\">(UINT nFlags, CPoint point)<\/span>\r\n<\/span>{\r\n    <span class=\"hljs-keyword\">if<\/span> (nFlags &amp; MK_LBUTTON)\r\n    {\r\n        <span class=\"hljs-built_in\">AddPoint<\/span>(point);\r\n    }\r\n}\r\n<\/code><\/pre>\n<p>This allows for the dynamic drawing of curves while the mouse moves.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To draw dynamic curves in MFC, you can achieve this by overriding the OnDraw function of the window class. The specific steps are as follows: In the header file of the Window class, define the data structure for the curve that needs to be drawn, for example: class CMyView : public CView { \/\/ \u66f2\u7ebf\u6570\u636e\u7ed3\u6784 [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[7894,13216,13207,8592,13217],"class_list":["post-10543","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-c-graphics","tag-dynamic-curves","tag-mfc-programming","tag-mfc-tutorial","tag-ondraw-function"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MFC Dynamic Curves: OnDraw Tutorial - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Learn how to draw dynamic curves in MFC by overriding the OnDraw function. Step-by-step tutorial with code examples.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MFC Dynamic Curves: OnDraw Tutorial\" \/>\n<meta property=\"og:description\" content=\"Learn how to draw dynamic curves in MFC by overriding the OnDraw function. Step-by-step tutorial with code examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-14T12:19:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-04T00:55:46+00:00\" \/>\n<meta name=\"author\" content=\"Olivia Parker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Olivia Parker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/\"},\"author\":{\"name\":\"Olivia Parker\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/3ff7b3da0e45ac5dbbef2502f3cea8d9\"},\"headline\":\"MFC Dynamic Curves: OnDraw Tutorial\",\"datePublished\":\"2024-03-14T12:19:14+00:00\",\"dateModified\":\"2025-08-04T00:55:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/\"},\"wordCount\":120,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"keywords\":[\"C graphics\",\"dynamic curves\",\"MFC programming\",\"MFC tutorial\",\"OnDraw function\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/\",\"name\":\"MFC Dynamic Curves: OnDraw Tutorial - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2024-03-14T12:19:14+00:00\",\"dateModified\":\"2025-08-04T00:55:46+00:00\",\"description\":\"Learn how to draw dynamic curves in MFC by overriding the OnDraw function. Step-by-step tutorial with code examples.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MFC Dynamic Curves: OnDraw Tutorial\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/3ff7b3da0e45ac5dbbef2502f3cea8d9\",\"name\":\"Olivia Parker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/56c66f189ba32a6f9eb50f31a38fe774e2a725c213d4070835ccc51b8fbbc54b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/56c66f189ba32a6f9eb50f31a38fe774e2a725c213d4070835ccc51b8fbbc54b?s=96&d=mm&r=g\",\"caption\":\"Olivia Parker\"},\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/oliviaparker\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MFC Dynamic Curves: OnDraw Tutorial - Blog - Silicon Cloud","description":"Learn how to draw dynamic curves in MFC by overriding the OnDraw function. Step-by-step tutorial with code examples.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/","og_locale":"en_US","og_type":"article","og_title":"MFC Dynamic Curves: OnDraw Tutorial","og_description":"Learn how to draw dynamic curves in MFC by overriding the OnDraw function. Step-by-step tutorial with code examples.","og_url":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2024-03-14T12:19:14+00:00","article_modified_time":"2025-08-04T00:55:46+00:00","author":"Olivia Parker","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Olivia Parker","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/"},"author":{"name":"Olivia Parker","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/3ff7b3da0e45ac5dbbef2502f3cea8d9"},"headline":"MFC Dynamic Curves: OnDraw Tutorial","datePublished":"2024-03-14T12:19:14+00:00","dateModified":"2025-08-04T00:55:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/"},"wordCount":120,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"keywords":["C graphics","dynamic curves","MFC programming","MFC tutorial","OnDraw function"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/","url":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/","name":"MFC Dynamic Curves: OnDraw Tutorial - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2024-03-14T12:19:14+00:00","dateModified":"2025-08-04T00:55:46+00:00","description":"Learn how to draw dynamic curves in MFC by overriding the OnDraw function. Step-by-step tutorial with code examples.","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/how-to-draw-dynamic-curves-in-mfc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"MFC Dynamic Curves: OnDraw Tutorial"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/3ff7b3da0e45ac5dbbef2502f3cea8d9","name":"Olivia Parker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/56c66f189ba32a6f9eb50f31a38fe774e2a725c213d4070835ccc51b8fbbc54b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/56c66f189ba32a6f9eb50f31a38fe774e2a725c213d4070835ccc51b8fbbc54b?s=96&d=mm&r=g","caption":"Olivia Parker"},"url":"https:\/\/www.silicloud.com\/blog\/author\/oliviaparker\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/10543","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=10543"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/10543\/revisions"}],"predecessor-version":[{"id":154309,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/10543\/revisions\/154309"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=10543"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=10543"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=10543"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}