{"id":31173,"date":"2024-10-28T10:45:04","date_gmt":"2024-10-28T10:45:04","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=31173"},"modified":"2024-11-26T06:46:06","modified_gmt":"2024-11-26T06:46:06","slug":"uwp-%ea%b0%9c%eb%b0%9c-%ed%96%89%ea%b3%bc-%ec%97%b4%ec%9d%98-%ec%b4%88%ea%b9%83%ea%b0%92-%ec%a7%80%ec%a0%95%ed%95%98%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/31173\/","title":{"rendered":"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30"},"content":{"rendered":"<p>UWP(Universal Windows Platform) \uac1c\ubc1c\uc740 Windows 10 \ubc0f \uadf8 \uc774\ud6c4 \ubc84\uc804\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \uac15\ub825\ud55c \ubc29\ubc95\uc785\ub2c8\ub2e4. UWP \uc571\uc740 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\uc73c\uba70, \uc774\ub7ec\ud55c \uc571\uc744 \uac1c\ubc1c\ud558\ub294 \ub370 \ud544\uc694\ud55c \uc720\uc6a9\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774\ubc88\uc5d0\ub294 UWP \uac1c\ubc1c\uc5d0\uc11c <strong>\ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30<\/strong>\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. \ud589\uacfc \uc5f4\uc758 \uac1c\ub150 \uc774\ud574\ud558\uae30<\/h2>\n<p>\ud589\uacfc \uc5f4\uc740 \ub370\uc774\ud130\ub97c \uad6c\uc131\ud558\ub294 \ub450 \uac00\uc9c0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ud2b9\ud788 UWP\uc5d0\uc11c\ub294 <strong>Grid<\/strong> \ub610\ub294 <strong>StackPanel<\/strong>\uacfc \uac19\uc740 \ub808\uc774\uc544\uc6c3 \ucee8\ud2b8\ub864\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud654\uba74\uc5d0 \uc694\uc18c\ub97c \ubc30\uce58\ud560 \ub54c \ud589\uacfc \uc5f4\uc744 \uc9c0\uc815\ud558\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. Grid\ub294 \uac00\uc7a5 \uc77c\ubc18\uc801\uc73c\ub85c \uc0ac\uc6a9\ub418\ub294 \ub808\uc774\uc544\uc6c3 \ucee8\ud2b8\ub864\ub85c, \uc5f4\uacfc \ud589\uc744 \ud1b5\ud574 UI \uc694\uc18c\ub97c \uc138\ubc00\ud558\uac8c \ubc30\uce58\ud560 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4.<\/p>\n<h2>2. Grid \uc0ac\uc6a9\ud558\uae30<\/h2>\n<p>Grid\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12\uc744 \uc9c0\uc815\ud558\uace0 UI\ub97c \ub514\uc790\uc778\ud558\ub294 \uacfc\uc815\uc744 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Grid\ub294 XAML\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ub418\uba70, \uac01 \ud589 \ubc0f \uc5f4\uc758 \ud06c\uae30\ub3c4 \uac1c\ubcc4\uc801\uc73c\ub85c \uc870\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.1. \uae30\ubcf8 Grid \ub9cc\ub4e4\uae30<\/h3>\n<pre><code>&lt;Grid Width=\"400\" Height=\"300\"&gt;\n    &lt;Grid.RowDefinitions&gt;\n        &lt;RowDefinition Height=\"*\" \/&gt;\n        &lt;RowDefinition Height=\"2*\" \/&gt;\n    &lt;\/Grid.RowDefinitions&gt;\n    &lt;Grid.ColumnDefinitions&gt;\n        &lt;ColumnDefinition Width=\"2*\" \/&gt;\n        &lt;ColumnDefinition Width=\"*\" \/&gt;\n    &lt;\/Grid.ColumnDefinitions&gt;\n\n    &lt;TextBlock Grid.Row=\"0\" Grid.Column=\"0\" Text=\"\ud589 0, \uc5f4 0\" \/&gt;\n    &lt;TextBlock Grid.Row=\"0\" Grid.Column=\"1\" Text=\"\ud589 0, \uc5f4 1\" \/&gt;\n    &lt;TextBlock Grid.Row=\"1\" Grid.Column=\"0\" Text=\"\ud589 1, \uc5f4 0\" \/&gt;\n    &lt;TextBlock Grid.Row=\"1\" Grid.Column=\"1\" Text=\"\ud589 1, \uc5f4 1\" \/&gt;\n&lt;\/Grid&gt;<\/code><\/pre>\n<p>\uc704\uc758 \uc608\uc81c\uc5d0\uc11c\ub294 2\uac1c\uc758 \ud589\uacfc 2\uac1c\uc758 \uc5f4\uc744 \uac00\uc9c4 Grid\ub97c \ub9cc\ub4e4\uc5c8\uc2b5\ub2c8\ub2e4. \uccab \ubc88\uc9f8 \ud589\uc740 \ub450 \uac1c\uc758 \uc5f4\ub85c \ub098\ub204\uc5b4\uc838 \uc788\uace0, \ub450 \ubc88\uc9f8 \ud589 \uc5ed\uc2dc \ub450 \uac1c\uc758 \uc5f4\ub85c \ub098\ub204\uc5b4\uc838 \uc788\uc2b5\ub2c8\ub2e4. \uac01 TextBlock\uc740 \ud574\ub2f9\ud558\ub294 \ud589\uacfc \uc5f4\uc5d0 \ubc30\uce58\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.2. \ud589\uacfc \uc5f4\uc758 \ud06c\uae30 \uc870\uc815\ud558\uae30<\/h3>\n<p>Grid\uc5d0\uc11c\ub294 \ud589\uacfc \uc5f4\uc758 \ud06c\uae30\ub97c * \ubc0f Auto\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc870\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. *\ub294 \uac00\ubcc0\uc801\uc778 \ube44\uc728\ub85c \ud06c\uae30\ub97c \uc870\uc815\ud560 \uc218 \uc788\ub294 \uac83\uc774\uace0, Auto\ub294 \ud574\ub2f9 \uc694\uc18c\uc758 \ucf58\ud150\uce20\uc5d0 \ub9de\uac8c \ud06c\uae30\ub97c \uc870\uc815\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>&lt;Grid.RowDefinitions&gt;\n    &lt;RowDefinition Height=\"Auto\" \/&gt;\n    &lt;RowDefinition Height=\"2*\" \/&gt;\n&lt;\/Grid.RowDefinitions&gt;<\/code><\/pre>\n<p>\uc704\uc758 \ucf54\ub4dc\uc5d0\uc11c\ub294 \uccab \ubc88\uc9f8 \ud589\uc758 \ub192\uc774\ub294 \uc790\ub3d9 \uc870\uc815\ub418\uace0, \ub450 \ubc88\uc9f8 \ud589\uc758 \ub192\uc774\ub294 \uccab \ubc88\uc9f8 \ud589\uc758 \ub450 \ubc30\uac00 \ub429\ub2c8\ub2e4.<\/p>\n<h3>2.3. \ub2e4\uc591\ud55c \ucd08\uae43\uac12 \ubc30\uce58\ud558\uae30<\/h3>\n<p>UWP\uc5d0\uc11c\ub294 Grid \uc678\uc5d0\ub3c4 \ub2e4\uc591\ud55c \ubc29\ubc95\uc73c\ub85c \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12\uc744 \uc9c0\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. StackPanel\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc138\ub85c \ub610\ub294 \uac00\ub85c\ub85c \uc694\uc18c\ub97c \uc815\ub82c\ud558\uace0, \ub9c8\uc9c4 \ubc0f \ud328\ub529\uc744 \ud1b5\ud574 UI\ub97c \ub354\uc6b1 \ub9e4\ub825\uc801\uc73c\ub85c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>&lt;StackPanel Orientation=\"Vertical\"&gt;\n    &lt;TextBlock Text=\"\uccab \ubc88\uc9f8 \ucf58\ud150\uce20\" Margin=\"10\" \/&gt;\n    &lt;TextBlock Text=\"\ub450 \ubc88\uc9f8 \ucf58\ud150\uce20\" Margin=\"10\" \/&gt;\n&lt;\/StackPanel&gt;<\/code><\/pre>\n<h2>3. XAML\uacfc C# \ucf54\ub4dc \ud1b5\ud569\ud558\uae30<\/h2>\n<p>UWP \uac1c\ubc1c\uc5d0\uc11c\ub294 XAML\uacfc C# \ucf54\ub4dc\uac00 \uc11c\ub85c \ud1b5\ud569\ub418\uc5b4 \uc0ac\uc6a9\ub418\uba70, XAML\ub85c \ub514\uc790\uc778\ud55c UI\uc5d0 \ub300\ud558\uc5ec C#\uc5d0\uc11c \ub85c\uc9c1\uc744 \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \ub3d9\uc801 \ub370\uc774\ud130 \ubc14\uc778\ub529 \ubc0f \uc774\ubca4\ud2b8 \ucc98\ub9ac\ub97c \uc27d\uac8c \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>3.1. \uae30\ubcf8 \ub370\uc774\ud130 \ubc14\uc778\ub529<\/h3>\n<p>\ub370\uc774\ud130 \ubc14\uc778\ub529\uc744 \uc0ac\uc6a9\ud558\uba74 XAML \uc694\uc18c\uc640 C# \ub370\uc774\ud130 \uc18c\uc2a4\ub97c \uc5f0\uacb0\ud558\uc5ec UI\ub97c \ub3d9\uc801\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c\uc740 \uae30\ubcf8\uc801\uc778 \ub370\uc774\ud130 \ubc14\uc778\ub529 \uc608\uc81c\uc785\ub2c8\ub2e4.<\/p>\n<pre><code>&lt;TextBlock Text=\"{Binding Name}\" \/&gt;<\/code><\/pre>\n<p>\uc704\uc758 \ucf54\ub4dc\uc5d0\uc11c Name \uc18d\uc131\uc740 ViewModel\uc5d0\uc11c \uc815\uc758\ub41c \uc18d\uc131\uc73c\ub85c, \ubc14\uc778\ub529\uc744 \ud1b5\ud574 UI\uc5d0 \ud45c\uc2dc\ub429\ub2c8\ub2e4.<\/p>\n<h3>3.2. ViewModel \ubc0f Model \uc124\uc815\ud558\uae30<\/h3>\n<pre><code>public class ViewModel\n{\n    public string Name { get; set; } = \"\ud64d\uae38\ub3d9\";\n}<\/code><\/pre>\n<h3>3.3. XAML\uc5d0\uc11c ViewModel \uc5f0\uacb0\ud558\uae30<\/h3>\n<pre><code>&lt;Page.DataContext&gt;\n    &lt;local:ViewModel \/&gt;\n&lt;\/Page.DataContext&gt;<\/code><\/pre>\n<h2>4. \uc751\ub2f5\ud615 \ub514\uc790\uc778 \uad6c\ud604\ud558\uae30<\/h2>\n<p>UWP\ub294 \ub2e4\uc591\ud55c \ud654\uba74 \ud06c\uae30\uc640 \ube44\uc728\uc5d0 \ub9de\ucdb0 \uc790\ub3d9\uc73c\ub85c \uc870\uc815\ub418\ub294 \uc751\ub2f5\ud615 \ub514\uc790\uc778\uc744 \uc9c0\uc6d0\ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 Visual State Manager\uc640 AdaptiveTrigger\ub97c \ud65c\uc6a9\ud558\uc5ec \uac01\uae30 \ub2e4\ub978 \ubdf0\ub97c \uc815\uc758\ud558\ub824\uba74, \ub2e4\uc74c\uacfc \uac19\uc740 \uad6c\uc870\ub97c \uac16\ucd94\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>&lt;VisualStateManager.VisualStateGroups&gt;\n    &lt;VisualStateGroup x:Name=\"AdaptiveStates\"&gt;\n        &lt;VisualState x:Name=\"Narrow\"&gt;\n            &lt;Storyboard&gt; ... &lt;\/Storyboard&gt;\n        &lt;\/VisualState&gt;\n        &lt;VisualState x:Name=\"Wide\"&gt;\n            &lt;Storyboard&gt; ... &lt;\/Storyboard&gt;\n        &lt;\/VisualState&gt;\n    &lt;\/VisualStateGroup&gt;\n&lt;\/VisualStateManager.VisualStateGroups&gt;<\/code><\/pre>\n<h2>5. \ud15c\ud50c\ub9bf \ubc0f \uc2a4\ud0c0\uc77c\ub9c1 \uc801\uc6a9\ud558\uae30<\/h2>\n<p>\ub514\uc790\uc778\uc744 \uc7ac\uc0ac\uc6a9\ud558\uae30 \uc27d\uac8c \ub9cc\ub4e4\uae30 \uc704\ud574 UWP\uc5d0\uc11c\ub294 \ud15c\ud50c\ub9bf\uacfc \uc2a4\ud0c0\uc77c\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ud2b9\ud788 ControlTemplate\uacfc DataTemplate\uc740 UI\ub97c \uc720\uc9c0\ud558\uba74\uc11c \uae30\ub2a5\uc744 \ud655\uc7a5\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>5.1. ControlTemplate \uc608\uc81c<\/h3>\n<pre><code>&lt;Button Template=\"{StaticResource MyButtonTemplate}\" \/&gt;<\/code><\/pre>\n<h3>5.2. DataTemplate \uc608\uc81c<\/h3>\n<pre><code>&lt;DataTemplate x:Key=\"MyDataTemplate\"&gt;\n    &lt;StackPanel&gt;\n        &lt;TextBlock Text=\"{Binding Name}\" \/&gt;\n        &lt;TextBlock Text=\"{Binding Age}\" \/&gt;\n    &lt;\/StackPanel&gt;\n&lt;\/DataTemplate&gt;<\/code><\/pre>\n<h2>6. \ub9c8\ubb34\ub9ac<\/h2>\n<p>\uc774\ubc88 \uae00\uc5d0\uc11c\ub294 UWP \uac1c\ubc1c\uc5d0\uc11c \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12\uc744 \uc9c0\uc815\ud558\uace0, Grid \ubc0f StackPanel\uc744 \uc0ac\uc6a9\ud558\uc5ec UI\ub97c \uad6c\uc131\ud558\ub294 \ubc29\ubc95\uc744 \ubc30\uc6e0\uc2b5\ub2c8\ub2e4. \ub610\ud55c, XAML\uacfc C# \ucf54\ub4dc\ub97c \ud1b5\ud569\ud558\uc5ec \ub370\uc774\ud130 \ubc14\uc778\ub529\uc744 \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uacfc \uc751\ub2f5\ud615 \ub514\uc790\uc778\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574\uc11c\ub3c4 \uc54c\uc544\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc774 \ubaa8\ub4e0 \uacfc\uc815\uc740 \uc9c1\uad00\uc801\uc778 \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uc81c\uacf5\ud558\ub294 \ub370 \ud070 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.<\/p>\n<p>UWP\ub294 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \ud1b5\uc77c\ub41c \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uc81c\uacf5\ud558\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc124\uacc4\ud560 \uc218 \uc788\ub3c4\ub85d \ud574\uc90d\ub2c8\ub2e4. \uc774 \uae00\uc774 UWP \uac1c\ubc1c\uc744 \ubc30\uc6b0\ub294 \ub370 \uc870\uae08\uc774\ub77c\ub3c4 \ub3c4\uc6c0\uc774 \ub418\uc5c8\uae30\ub97c \ubc14\ub78d\ub2c8\ub2e4. \uc9c0\uc18d\uc801\uc73c\ub85c \ubc1c\uc804\ud558\ub294 UWP \uc0dd\ud0dc\uacc4\uc5d0\uc11c \ub2e4\uc591\ud55c \uae30\ub2a5\uc744 \ud0d0\uc0c9\ud558\uace0, \uc5ec\ub7ec\ubd84\uc758 \uc571\uc744 \ub354\uc6b1 \ub9e4\ub825\uc801\uc73c\ub85c \ub9cc\ub4e4\uc5b4 \ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>UWP(Universal Windows Platform) \uac1c\ubc1c\uc740 Windows 10 \ubc0f \uadf8 \uc774\ud6c4 \ubc84\uc804\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \uac15\ub825\ud55c \ubc29\ubc95\uc785\ub2c8\ub2e4. UWP \uc571\uc740 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\uc73c\uba70, \uc774\ub7ec\ud55c \uc571\uc744 \uac1c\ubc1c\ud558\ub294 \ub370 \ud544\uc694\ud55c \uc720\uc6a9\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774\ubc88\uc5d0\ub294 UWP \uac1c\ubc1c\uc5d0\uc11c \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ud589\uacfc \uc5f4\uc758 \uac1c\ub150 \uc774\ud574\ud558\uae30 \ud589\uacfc \uc5f4\uc740 \ub370\uc774\ud130\ub97c \uad6c\uc131\ud558\ub294 \ub450 \uac00\uc9c0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ud2b9\ud788 UWP\uc5d0\uc11c\ub294 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/31173\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[38],"tags":[],"class_list":["post-31173","post","type-post","status-publish","format-standard","hentry","category-uwp-"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/31173\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"UWP(Universal Windows Platform) \uac1c\ubc1c\uc740 Windows 10 \ubc0f \uadf8 \uc774\ud6c4 \ubc84\uc804\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \uac15\ub825\ud55c \ubc29\ubc95\uc785\ub2c8\ub2e4. UWP \uc571\uc740 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\uc73c\uba70, \uc774\ub7ec\ud55c \uc571\uc744 \uac1c\ubc1c\ud558\ub294 \ub370 \ud544\uc694\ud55c \uc720\uc6a9\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774\ubc88\uc5d0\ub294 UWP \uac1c\ubc1c\uc5d0\uc11c \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ud589\uacfc \uc5f4\uc758 \uac1c\ub150 \uc774\ud574\ud558\uae30 \ud589\uacfc \uc5f4\uc740 \ub370\uc774\ud130\ub97c \uad6c\uc131\ud558\ub294 \ub450 \uac00\uc9c0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ud2b9\ud788 UWP\uc5d0\uc11c\ub294 &hellip; \ub354 \ubcf4\uae30 &quot;UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/31173\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-28T10:45:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:46:06+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/31173\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31173\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30\",\"datePublished\":\"2024-10-28T10:45:04+00:00\",\"dateModified\":\"2024-11-26T06:46:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31173\/\"},\"wordCount\":66,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP \uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/31173\/\",\"url\":\"https:\/\/atmokpo.com\/w\/31173\/\",\"name\":\"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-28T10:45:04+00:00\",\"dateModified\":\"2024-11-26T06:46:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31173\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/31173\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/31173\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/31173\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"UWP(Universal Windows Platform) \uac1c\ubc1c\uc740 Windows 10 \ubc0f \uadf8 \uc774\ud6c4 \ubc84\uc804\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \uac15\ub825\ud55c \ubc29\ubc95\uc785\ub2c8\ub2e4. UWP \uc571\uc740 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\uc73c\uba70, \uc774\ub7ec\ud55c \uc571\uc744 \uac1c\ubc1c\ud558\ub294 \ub370 \ud544\uc694\ud55c \uc720\uc6a9\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774\ubc88\uc5d0\ub294 UWP \uac1c\ubc1c\uc5d0\uc11c \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ud589\uacfc \uc5f4\uc758 \uac1c\ub150 \uc774\ud574\ud558\uae30 \ud589\uacfc \uc5f4\uc740 \ub370\uc774\ud130\ub97c \uad6c\uc131\ud558\ub294 \ub450 \uac00\uc9c0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ud2b9\ud788 UWP\uc5d0\uc11c\ub294 &hellip; \ub354 \ubcf4\uae30 \"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/31173\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-28T10:45:04+00:00","article_modified_time":"2024-11-26T06:46:06+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/31173\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/31173\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30","datePublished":"2024-10-28T10:45:04+00:00","dateModified":"2024-11-26T06:46:06+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/31173\/"},"wordCount":66,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP \uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/31173\/","url":"https:\/\/atmokpo.com\/w\/31173\/","name":"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-28T10:45:04+00:00","dateModified":"2024-11-26T06:46:06+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/31173\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/31173\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/31173\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP \uac1c\ubc1c, \ud589\uacfc \uc5f4\uc758 \ucd08\uae43\uac12 \uc9c0\uc815\ud558\uae30"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31173","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=31173"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31173\/revisions"}],"predecessor-version":[{"id":31174,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31173\/revisions\/31174"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=31173"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=31173"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=31173"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}