{"id":31129,"date":"2024-10-28T10:44:51","date_gmt":"2024-10-28T10:44:51","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=31129"},"modified":"2024-11-26T06:46:16","modified_gmt":"2024-11-26T06:46:16","slug":"uwp-%ea%b0%9c%eb%b0%9c-%ec%86%8d%ec%84%b1-%ec%9a%94%ec%86%8c%ec%99%80-%eb%b6%80%ec%b0%a9-%ec%86%8d%ec%84%b1","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/31129\/","title":{"rendered":"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131"},"content":{"rendered":"<p>\uc548\ub155\ud558\uc138\uc694! \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 Windows UWP(Universal Windows Platform) \uac1c\ubc1c\uc5d0\uc11c \uc911\uc694\ud55c \uac1c\ub150\uc778 \uc18d\uc131 \uc694\uc18c(Dependency Properties)\uc640 \ubd80\ucc29 \uc18d\uc131(Attached Properties)\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. UWP\ub294 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud558\ub294 \uac15\ub825\ud55c \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc740 \uc774 \ud50c\ub7ab\ud3fc\uc5d0\uc11c UI \uc694\uc18c\uc758 \uc18d\uc131\uc744 \uc124\uc815\ud558\uace0 \uc81c\uc5b4\ud558\ub294 \ub370 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud558\uc8e0.<\/p>\n<h2>1. \uc18d\uc131 \uc694\uc18c(Dependency Properties)\ub780?<\/h2>\n<p>\uc18d\uc131 \uc694\uc18c\ub294 WPF(Windows Presentation Foundation)\uc5d0\uc11c \ub3c4\uc785\ub41c \uac1c\ub150\uc73c\ub85c, UWP\uc5d0\uc11c\ub3c4 \ub3d9\uc77c\ud55c \uac1c\ub150\uc744 \ucc44\ud0dd\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc18d\uc131 \uc694\uc18c\ub294 \ub2e4\uc74c\uacfc \uac19\uc740 \ud2b9\uc131\uc744 \uac00\uc9d1\ub2c8\ub2e4:<\/p>\n<ul>\n<li>UI \uc694\uc18c\uc758 \uc18d\uc131\uc744 \uc815\uc758\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li>\uc18d\uc131 \uac12\uc758 \ubcc0\uacbd\uc744 \ucd94\uc801\ud558\uace0 \uc774\ub97c \uae30\ubc18\uc73c\ub85c UI\ub97c \uac31\uc2e0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li>\ub370\uc774\ud130 \ubc14\uc778\ub529\uacfc \uc2a4\ud0c0\uc77c\ub9c1 \uae30\ub2a5\uc744 \uc9c0\uc6d0\ud569\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h3>1.1 \uc18d\uc131 \uc694\uc18c\uc758 \uad6c\uc870<\/h3>\n<p>\uc18d\uc131 \uc694\uc18c\ub97c \uc815\uc758\ud558\ub824\uba74 <code>DependencyObject<\/code> \ud074\ub798\uc2a4\ub97c \uc0c1\uc18d \ud558\ub294 \ud074\ub798\uc2a4\ub97c \ub9cc\ub4e4\uace0, \ud544\uc694\ud55c \uc18d\uc131 \uc694\uc18c\ub97c \ub4f1\ub85d\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 <code>DependencyProperty.Register<\/code> \uba54\uc11c\ub4dc\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n<h4>\uc608\uc81c: \uc0ac\uc6a9\uc790 \uc815\uc758 \uc18d\uc131 \uc694\uc18c \uc815\uc758\ud558\uae30<\/h4>\n<pre><code class=\"language-csharp\">using Windows.UI.Xaml;\n\npublic class MyCustomControl : Control\n{\n    \/\/ \uc18d\uc131 \uc694\uc18c \uc815\uc758\n    public static readonly DependencyProperty MyPropertyProperty =\n        DependencyProperty.Register(\n            \"MyProperty\",\n            typeof(string),\n            typeof(MyCustomControl),\n            new PropertyMetadata(default(string)));\n\n    \/\/ CLR \uc18d\uc131 \ub798\ud37c\n    public string MyProperty\n    {\n        get { return (string)GetValue(MyPropertyProperty); }\n        set { SetValue(MyPropertyProperty, value); }\n    }\n}\n<\/code><\/pre>\n<p>\uc704 \ucf54\ub4dc\ub294 <code>MyCustomControl<\/code>\uc774\ub77c\ub294 \uc0ac\uc6a9\uc790 \uc815\uc758 \ucee8\ud2b8\ub864\uc744 \uc815\uc758\ud558\uace0, <code>MyProperty<\/code>\ub77c\ub294 \uc18d\uc131 \uc694\uc18c\ub97c \ub4f1\ub85d\ud558\ub294 \uc608\uc81c\uc785\ub2c8\ub2e4.<\/p>\n<h3>1.2 \uc18d\uc131 \uc694\uc18c\uc758 \ud2b9\uc131<\/h3>\n<p>\uc18d\uc131 \uc694\uc18c\ub294 \ub2e4\uc591\ud55c \ud2b9\uc131\uc744 \uac00\uc9d1\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \ub2e4\uc74c\uacfc \uac19\uc740 \uac83\ub4e4\uc774 \uc788\uc2b5\ub2c8\ub2e4:<\/p>\n<ul>\n<li><strong>\uae30\ubcf8\uac12(Default Value)<\/strong>: \uc18d\uc131\uc758 \uae30\ubcf8\uac12\uc744 \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li><strong>\ubcc0\uacbd \uc54c\ub9bc(Change Notification)<\/strong>: \uc18d\uc131 \uac12\uc774 \ubcc0\uacbd\ub420 \ub54c \uc54c\ub9bc\uc744 \ubc1b\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li><strong>\ub370\uc774\ud130 \ubc14\uc778\ub529(Data Binding)<\/strong>: \uc18d\uc131\uc744 \ub370\uc774\ud130 \ucee8\ud14d\uc2a4\ud2b8\uc640 \ubc14\uc778\ub529\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h2>2. \ubd80\ucc29 \uc18d\uc131(Attached Properties)\ub780?<\/h2>\n<p>\ubd80\ucc29 \uc18d\uc131\uc740 \ud2b9\uc815 \uac1d\uccb4\uc5d0 \ucd94\uac00\uc801\uc778 \uc18d\uc131\uc744 \uc81c\uacf5\ud558\uae30 \uc704\ud574 \uc0ac\uc6a9\ub418\ub294 \uc18d\uc131\uc785\ub2c8\ub2e4. \uc774 \uc18d\uc131\uc740 \uc77c\ubc18\uc801\uc73c\ub85c \ub2e4\ub978 \ud074\ub798\uc2a4\uc5d0\uc11c \uc0ac\uc6a9\ub418\uba70, \ub514\uc790\uc778 \uc2dc\ub098\ub9ac\uc624\uc5d0\uc11c \ub9e4\uc6b0 \uc720\uc6a9\ud558\uac8c \ud65c\uc6a9\ub429\ub2c8\ub2e4. \ubc29\ud5a5\uc131\uc744 \uac16\ub294 \uc815\ubcf4(\uc608: \ud2b9\uc815 UI \uc694\uc18c\uc5d0 \uad00\ud55c \ub808\uc774\uc544\uc6c3 \uc815\ubcf4)\ub97c \uc81c\uacf5\ud558\ub294 \ub370 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n<h3>2.1 \ubd80\ucc29 \uc18d\uc131\uc758 \uad6c\uc870<\/h3>\n<p>\ubd80\ucc29 \uc18d\uc131\uc744 \uc815\uc758\ud558\ub294 \ubc29\ubc95\uc740 \uc18d\uc131 \uc694\uc18c\ub97c \uc815\uc758\ud558\ub294 \ubc29\ubc95\uacfc \uc720\uc0ac\ud569\ub2c8\ub2e4. \uc5ec\uae30\uc5d0 \ub530\ub77c \ubd80\ucc29 \uc18d\uc131\uc744 \uc815\uc758\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h4>\uc608\uc81c: \ubd80\ucc29 \uc18d\uc131 \uc815\uc758\ud558\uae30<\/h4>\n<pre><code class=\"language-csharp\">public static class MyAttachedProperties\n{\n    public static readonly DependencyProperty IsMyPropertyProperty =\n        DependencyProperty.RegisterAttached(\n            \"IsMyProperty\",\n            typeof(bool),\n            typeof(MyAttachedProperties),\n            new PropertyMetadata(false));\n\n    public static void SetIsMyProperty(UIElement element, bool value)\n    {\n        element.SetValue(IsMyPropertyProperty, value);\n    }\n\n    public static bool GetIsMyProperty(UIElement element)\n    {\n        return (bool)element.GetValue(IsMyPropertyProperty);\n    }\n}\n<\/code><\/pre>\n<p>\uc704 \ucf54\ub4dc\ub294 <code>MyAttachedProperties<\/code> \ud074\ub798\uc2a4\uc5d0\uc11c <code>IsMyProperty<\/code>\ub77c\ub294 \ubd80\ucc29 \uc18d\uc131\uc744 \uc815\uc758\ud55c \uc608\uc81c\uc785\ub2c8\ub2e4. \ubd80\ucc29 \uc18d\uc131\uc740 \ud074\ub798\uc2a4\uc758 \uc678\ubd80\uc5d0\uc11c \ub2e4\ub978 \ud074\ub798\uc2a4\uc758 UI \uc694\uc18c\uc5d0 \uc801\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.2 \ubd80\ucc29 \uc18d\uc131\uc758 \ud65c\uc6a9<\/h3>\n<p>\ubd80\ucc29 \uc18d\uc131\uc740 \uc8fc\ub85c \ub2e4\uc74c\uacfc \uac19\uc740 \uc0c1\ud669\uc5d0\uc11c \uc720\uc6a9\ud569\ub2c8\ub2e4:<\/p>\n<ul>\n<li>\ubd80\ubaa8 \uc694\uc18c\uac00 \uc790\uc2dd \uc694\uc18c\uc5d0 \ub370\uc774\ud130\ub97c \uc804\ub2ec\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li>\ud2b9\uc815 UI \uc694\uc18c\uc5d0 \ub300\ud55c \uc18d\uc131\uc744 \ud544\uc694\uc5d0 \ub530\ub77c \ub3d9\uc801\uc73c\ub85c \ucd94\uac00\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li>\ub808\uc774\uc544\uc6c3 \ubc0f \uc2a4\ud0c0\uc77c \uc870\uc815 \uc2dc \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h2>3. \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc758 \ube44\uad50<\/h2>\n<p>\uc18d\uc131 \uc694\uc18c\ub294 \ud074\ub798\uc2a4 \ub0b4\ubd80\uc5d0\uc11c \uc815\uc758\ub41c \uc18d\uc131\uc774\uace0, \ubd80\ucc29 \uc18d\uc131\uc740 \ud2b9\uc815 UI \uc694\uc18c\uc5d0 \uc678\ubd80\uc5d0\uc11c \uc124\uc815 \uac00\ub2a5\ud55c \uc18d\uc131\uc785\ub2c8\ub2e4. \uc18d\uc131 \uc694\uc18c\ub294 \ud074\ub798\uc2a4\uc758 \uc778\uc2a4\ud134\uc2a4\uc5d0\uc11c \uc9c1\uc811 \uc0ac\uc6a9\ub420 \uc218 \uc788\uc73c\uba70, \ubd80\ucc29 \uc18d\uc131\uc740 \uc8fc\ub85c UI \uc694\uc18c\uc5d0 \ub300\ud55c \ucd94\uac00\uc801\uc778 \uc18d\uc131\uc73c\ub85c \ud65c\uc6a9\ub429\ub2c8\ub2e4.<\/p>\n<h2>4. \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc758 \uc608\uc81c<\/h2>\n<p>\uc544\ub798\ub294 \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc744 \ud568\uaed8 \uc0ac\uc6a9\ud558\ub294 \uac04\ub2e8\ud55c \uc608\uc81c\uc785\ub2c8\ub2e4.<\/p>\n<h4>\uc608\uc81c: \uc0ac\uc6a9\uc790 \uc815\uc758 \ucee8\ud2b8\ub864\uacfc \ubd80\ucc29 \uc18d\uc131 \uacb0\ud569\ud558\uae30<\/h4>\n<pre><code class=\"language-csharp\">public class MyCustomControl : Control\n{\n    \/\/ \uc18d\uc131 \uc694\uc18c \uc815\uc758\n    public static readonly DependencyProperty MyPropertyProperty =\n        DependencyProperty.Register(\n            \"MyProperty\",\n            typeof(string),\n            typeof(MyCustomControl),\n            new PropertyMetadata(default(string)));\n\n    public string MyProperty\n    {\n        get { return (string)GetValue(MyPropertyProperty); }\n        set { SetValue(MyPropertyProperty, value); }\n    }\n}\n\npublic static class MyAttachedProperties\n{\n    public static readonly DependencyProperty IsMyPropertyProperty =\n        DependencyProperty.RegisterAttached(\n            \"IsMyProperty\",\n            typeof(bool),\n            typeof(MyAttachedProperties),\n            new PropertyMetadata(false));\n\n    public static void SetIsMyProperty(UIElement element, bool value)\n    {\n        element.SetValue(IsMyPropertyProperty, value);\n    }\n\n    public static bool GetIsMyProperty(UIElement element)\n    {\n        return (bool)element.GetValue(IsMyPropertyProperty);\n    }\n}\n<\/code><\/pre>\n<h2>5. \uc2e4\uc2b5 \uc608\uc81c: \uac04\ub2e8\ud55c UWP \uc571 \uad6c\uc131\ud558\uae30<\/h2>\n<p>\uc774\uc81c \uac04\ub2e8\ud55c UWP \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \uc704\uc758 \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc744 \uc801\uc6a9\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>5.1 XAML \ud30c\uc77c \uc791\uc131<\/h3>\n<pre><code class=\"language-xaml\">&lt;Page\n    x:Class=\"MyApp.MainPage\"\n    xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n    xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n    xmlns:local=\"using:MyApp\"\n    xmlns:controls=\"using:MyApp.Controls\"&gt;\n\n    &lt;Grid&gt;\n        &lt;controls:MyCustomControl MyProperty=\"Hello, World!\" \n            local:MyAttachedProperties.IsMyProperty=\"True\" \/&gt;\n    &lt;\/Grid&gt;\n&lt;\/Page&gt;<\/code><\/pre>\n<h3>5.2 C# \ucf54\ub4dc \uc791\uc131<\/h3>\n<pre><code class=\"language-csharp\">using Windows.UI.Xaml.Controls;\n\nnamespace MyApp\n{\n    public sealed partial class MainPage : Page\n    {\n        public MainPage()\n        {\n            this.InitializeComponent();\n        }\n    }\n}<\/code><\/pre>\n<h2>\uacb0\ub860<\/h2>\n<p>\uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 UWP \uac1c\ubc1c\uc5d0\uc11c \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc758 \uac1c\ub150\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc18d\uc131 \uc694\uc18c\ub294 \uc0ac\uc6a9\uc790 \uc815\uc758 \ucee8\ud2b8\ub864\uc758 \uc18d\uc131\uc744 \uad00\ub9ac\ud558\uace0, \ubd80\ucc29 \uc18d\uc131\uc740 UI \uc694\uc18c\uc5d0 \ub300\ud55c \ucd94\uac00 \uc18d\uc131\uc744 \ub3d9\uc801\uc73c\ub85c \ucd94\uac00\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc774 \ub450 \uac00\uc9c0 \uac1c\ub150\uc744 \uc801\uc808\ud788 \ud65c\uc6a9\ud558\uba74 \ub300\uaddc\ubaa8 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c \ud070 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.<\/p>\n<p>\uc774\uc81c \uc5ec\ub7ec\ubd84\uc740 \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc744 \ud65c\uc6a9\ud558\uc5ec UWP \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ubcf4\ub2e4 \ud48d\ubd80\ud558\uac8c \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \uae30\ubc18\uc744 \uac16\ucd94\uc5c8\uc2b5\ub2c8\ub2e4. \ub354 \ub098\uc544\uac00 \uc774 \uac1c\ub150\ub4e4\uc744 \uc751\uc6a9\ud558\uc5ec \ub2e4\uc591\ud55c \uae30\ub2a5\uc744 \uac00\uc9c4 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4\uc5b4\ubcf4\uc138\uc694!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc548\ub155\ud558\uc138\uc694! \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 Windows UWP(Universal Windows Platform) \uac1c\ubc1c\uc5d0\uc11c \uc911\uc694\ud55c \uac1c\ub150\uc778 \uc18d\uc131 \uc694\uc18c(Dependency Properties)\uc640 \ubd80\ucc29 \uc18d\uc131(Attached Properties)\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. UWP\ub294 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud558\ub294 \uac15\ub825\ud55c \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc740 \uc774 \ud50c\ub7ab\ud3fc\uc5d0\uc11c UI \uc694\uc18c\uc758 \uc18d\uc131\uc744 \uc124\uc815\ud558\uace0 \uc81c\uc5b4\ud558\ub294 \ub370 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud558\uc8e0. 1. \uc18d\uc131 \uc694\uc18c(Dependency Properties)\ub780? \uc18d\uc131 \uc694\uc18c\ub294 WPF(Windows Presentation &hellip; <a href=\"https:\/\/atmokpo.com\/w\/31129\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131&#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-31129","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, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131 - \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\/31129\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc548\ub155\ud558\uc138\uc694! \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 Windows UWP(Universal Windows Platform) \uac1c\ubc1c\uc5d0\uc11c \uc911\uc694\ud55c \uac1c\ub150\uc778 \uc18d\uc131 \uc694\uc18c(Dependency Properties)\uc640 \ubd80\ucc29 \uc18d\uc131(Attached Properties)\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. UWP\ub294 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud558\ub294 \uac15\ub825\ud55c \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc740 \uc774 \ud50c\ub7ab\ud3fc\uc5d0\uc11c UI \uc694\uc18c\uc758 \uc18d\uc131\uc744 \uc124\uc815\ud558\uace0 \uc81c\uc5b4\ud558\ub294 \ub370 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud558\uc8e0. 1. \uc18d\uc131 \uc694\uc18c(Dependency Properties)\ub780? \uc18d\uc131 \uc694\uc18c\ub294 WPF(Windows Presentation &hellip; \ub354 \ubcf4\uae30 &quot;UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/31129\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-28T10:44:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:46:16+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\/31129\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31129\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\",\"datePublished\":\"2024-10-28T10:44:51+00:00\",\"dateModified\":\"2024-11-26T06:46:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31129\/\"},\"wordCount\":41,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP \uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/31129\/\",\"url\":\"https:\/\/atmokpo.com\/w\/31129\/\",\"name\":\"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-28T10:44:51+00:00\",\"dateModified\":\"2024-11-26T06:46:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31129\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/31129\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/31129\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\"}]},{\"@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, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131 - \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\/31129\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc548\ub155\ud558\uc138\uc694! \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 Windows UWP(Universal Windows Platform) \uac1c\ubc1c\uc5d0\uc11c \uc911\uc694\ud55c \uac1c\ub150\uc778 \uc18d\uc131 \uc694\uc18c(Dependency Properties)\uc640 \ubd80\ucc29 \uc18d\uc131(Attached Properties)\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. UWP\ub294 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud558\ub294 \uac15\ub825\ud55c \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\uc740 \uc774 \ud50c\ub7ab\ud3fc\uc5d0\uc11c UI \uc694\uc18c\uc758 \uc18d\uc131\uc744 \uc124\uc815\ud558\uace0 \uc81c\uc5b4\ud558\ub294 \ub370 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud558\uc8e0. 1. \uc18d\uc131 \uc694\uc18c(Dependency Properties)\ub780? \uc18d\uc131 \uc694\uc18c\ub294 WPF(Windows Presentation &hellip; \ub354 \ubcf4\uae30 \"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131\"","og_url":"https:\/\/atmokpo.com\/w\/31129\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-28T10:44:51+00:00","article_modified_time":"2024-11-26T06:46:16+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\/31129\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/31129\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131","datePublished":"2024-10-28T10:44:51+00:00","dateModified":"2024-11-26T06:46:16+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/31129\/"},"wordCount":41,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP \uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/31129\/","url":"https:\/\/atmokpo.com\/w\/31129\/","name":"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-28T10:44:51+00:00","dateModified":"2024-11-26T06:46:16+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/31129\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/31129\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/31129\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP \uac1c\ubc1c, \uc18d\uc131 \uc694\uc18c\uc640 \ubd80\ucc29 \uc18d\uc131"}]},{"@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":[{"id":31145,"url":"https:\/\/atmokpo.com\/w\/31145\/","url_meta":{"origin":31129,"position":0},"title":"UWP \uac1c\ubc1c, \uc694\uc18c\uc640 \uc694\uc18c \uac04 \ub370\uc774\ud130 \ubc14\uc778\ub529","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc720\ub2c8\ubc84\uc124 \uc708\ub3c4\uc6b0 \ud50c\ub7ab\ud3fc(UWP) \uac1c\ubc1c\uc740 \ud604\ub300\uc801\uc778 \uc571 \uac1c\ubc1c\uc744 \uc704\ud55c \ud6cc\ub96d\ud55c \uc120\ud0dd\uc9c0\uc785\ub2c8\ub2e4. \ub2e4\uc591\ud55c \uae30\uae30\uc5d0\uc11c \uc571\uc744 \uc2e4\ud589\ud560 \uc218 \uc788\ub294 \uac00\ub2a5\uc131\uacfc \uc9c1\uad00\uc801\uc778 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4(UI)\uc5d0 \ub300\ud55c \ub192\uc740 \uc801\uc751\uc131 \ub355\ubd84\uc5d0 UWP\ub294 \ub9ce\uc740 \uac1c\ubc1c\uc790\uc5d0\uac8c \uafb8\uc900\ud788 \uc778\uae30\ub97c \uc5bb\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud2b9\ud788 \ub370\uc774\ud130 \ubc14\uc778\ub529\uc740 UWP \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uac15\ub825\ud55c \uae30\ub2a5 \uc911 \ud558\ub098\ub85c, UI \uc694\uc18c\uc640 \ub370\uc774\ud130 \uc18c\uc2a4\ub97c \ub3d9\uae30\ud654\ud558\uc5ec \ub354\uc6b1 \ud6a8\uc728\uc801\uc73c\ub85c \uc571\uc744 \uad6c\ucd95\ud560 \uc218\u2026","rel":"","context":"&quot;UWP \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"UWP \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/uwp-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":31075,"url":"https:\/\/atmokpo.com\/w\/31075\/","url_meta":{"origin":31129,"position":1},"title":"UWP \uac1c\ubc1c, XAML Controls Gallery","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \u00a0 | \u00a0 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c 1. UWP\ub780? UWP(Universal Windows Platform)\ub294 Windows 10, Windows 10 Mobile \ubc0f Xbox One\uacfc \uac19\uc740 \ub2e4\uc591\ud55c Windows \uc7a5\uce58\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. UWP\ub294 \ub2e4\uc591\ud55c \ub514\ubc14\uc774\uc2a4\uc5d0\uc11c \uc77c\uad00\ub41c \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uc81c\uacf5\ud558\uae30 \uc704\ud574 \uc124\uacc4\ub418\uc5c8\uc73c\uba70, XAML, C#, JavaScript \ub4f1\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. UWP\u2026","rel":"","context":"&quot;UWP \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"UWP \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/uwp-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":24952,"url":"https:\/\/atmokpo.com\/w\/24952\/","url_meta":{"origin":31129,"position":2},"title":"\uc720\ub2c8\ud2f0 \uae30\ucd08 \uac15\uc88c: \uc18d\uc131\uacfc \uae30\ub2a5\uc774\ub780?","author":"root","date":"2024\ub144 10\uc6d4 26\uc77c","format":false,"excerpt":"\uc791\uc131\uc77c: 2023\ub144 10\uc6d4 19\uc77c \uc800\uc790: \uc870\uad11\ud615 1. \uc720\ub2c8\ud2f0\ub780 \ubb34\uc5c7\uc778\uac00? \uc720\ub2c8\ud2f0(Unity)\ub294 2D \ubc0f 3D \uac8c\uc784 \uac1c\ubc1c\uc744 \uc704\ud55c \uac15\ub825\ud55c \uc5d4\uc9c4\uc73c\ub85c, \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uac8c\uc784\uacfc \uc2dc\ubbac\ub808\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud569\ub2c8\ub2e4. 2005\ub144\uc5d0 \ucc98\uc74c \uacf5\uac1c\ub41c \uc774\ud6c4\ub85c, \uc720\ub2c8\ud2f0\ub294 \uc560\ub2c8\uba54\uc774\uc158, \ubb3c\ub9ac\ud559, \uc778\uacf5\uc9c0\ub2a5, \ub124\ud2b8\uc6cc\ud0b9 \uac19\uc740 \ubcf5\uc7a1\ud55c \uc5d4\uc9c4 \uae30\ub2a5\uc744 \uac04\uc18c\ud654\ud558\uc5ec \uac1c\ubc1c\uc790\uac00 \uc27d\uac8c \uc811\uadfc\ud560 \uc218 \uc788\ub3c4\ub85d \ub9cc\ub4e4\uc5b4\uc84c\uc2b5\ub2c8\ub2e4. \uc720\ub2c8\ud2f0\uc758 \uac00\uc7a5 \ud070 \uc7a5\uc810\u2026","rel":"","context":"&quot;\uc720\ub2c8\ud2f0\uae30\ucd08&quot;\uc5d0\uc11c","block_context":{"text":"\uc720\ub2c8\ud2f0\uae30\ucd08","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9c%a0%eb%8b%88%ed%8b%b0%ea%b8%b0%ec%b4%88\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":42688,"url":"https:\/\/atmokpo.com\/w\/42688\/","url_meta":{"origin":31129,"position":3},"title":"[\uac1d\uccb4\uc9c0\ud5a5] 10.Reflection\uacfc \uace0\uae09 \uba54\ud0c0\ud504\ub85c\uadf8\ub798\ubc0d, \uc758\uc874\uc131 \uc8fc\uc785\uc5d0\uc11c Reflection \uc0ac\uc6a9 \uc0ac\ub840","author":"root","date":"2024\ub144 11\uc6d4 13\uc77c","format":false,"excerpt":"\uae00\uc4f4\uc774: \uc870\uad11\ud615 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 \ud604\ub300 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc5d0\uc11c \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uacfc \uba54\ud0c0\ud504\ub85c\uadf8\ub798\ubc0d\uc740 \ud544\uc218\uc801\uc778 \uac1c\ub150\uc73c\ub85c \uc790\ub9ac \uc7a1\uace0 \uc788\uc2b5\ub2c8\ub2e4. C#\uc740 \uc774\ub7ec\ud55c \uac1c\ub150\uc744 \uc9c0\uc6d0\ud558\ub294 \uc5ec\ub7ec \uac15\ub825\ud55c \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ud2b9\ud788, Reflection\uc740 \ud074\ub798\uc2a4, \uba54\uc11c\ub4dc, \uc18d\uc131 \ub4f1\uc758 \uba54\ud0c0\ub370\uc774\ud130\ub97c \ub7f0\ud0c0\uc784\uc5d0 \ub3d9\uc801\uc73c\ub85c \ud655\uc778\ud558\uace0 \uc870\uc791\ud560 \uc218 \uc788\ub294 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ubcf8 \uae00\uc5d0\uc11c\ub294 Reflection\uacfc \uace0\uae09 \uba54\ud0c0\ud504\ub85c\uadf8\ub798\ubc0d\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uace0, \uc758\uc874\uc131\u2026","rel":"","context":"&quot;csharp&quot;\uc5d0\uc11c","block_context":{"text":"csharp","link":"https:\/\/atmokpo.com\/w\/category\/csharp\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43227,"url":"https:\/\/atmokpo.com\/w\/43227\/","url_meta":{"origin":31129,"position":4},"title":"[Prism]  017. Prism\uc758 \uc2a4\ud0c0\uc77c \ubc0f \ud14c\ub9c8, \ub370\uc774\ud130 \ud15c\ud50c\ub9bf\uacfc ControlTemplate \uc0ac\uc6a9\ud558\uae30","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"WPF(Windows Presentation Foundation)\uc758 Prism \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ubaa8\ub4c8\ud654 \ubc0f MVVM(\ubaa8\ub378-\ubdf0-\ubdf0\ubaa8\ub378) \ud328\ud134\uc744 \uae30\ubc18\uc73c\ub85c \ud558\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \uc704\ud55c \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Prism\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc2a4\ud0c0\uc77c \ubc0f \ud14c\ub9c8\ub97c \uc815\uc758\ud558\uace0, \ub370\uc774\ud130 \ud15c\ud50c\ub9bf \ubc0f ControlTemplate\uc744 \ud65c\uc6a9\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uae4a\uc774 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. Prism\uacfc \uc2a4\ud0c0\uc77c \ubc0f \ud14c\ub9c8\uc758 \uc911\uc694\uc131 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc0ac\uc6a9\uc790 \uacbd\ud5d8(UX)\uc744 \ud5a5\uc0c1\uc2dc\ud0a4\uae30 \uc704\ud574\uc11c\ub294 \uc77c\uad00\ub41c \uc2a4\ud0c0\uc77c\uacfc \ub9e4\ub825\uc801\uc778 \ud14c\ub9c8\uac00 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. Prism\u2026","rel":"","context":"&quot;WPF \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"WPF \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/wpf-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43231,"url":"https:\/\/atmokpo.com\/w\/43231\/","url_meta":{"origin":31129,"position":5},"title":"[Prism]  016. Prism\uc758 \uc2a4\ud0c0\uc77c \ubc0f \ud14c\ub9c8, \uc0ac\uc6a9\uc790 \uc815\uc758 \uc2a4\ud0c0\uc77c \uc801\uc6a9","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"WPF(Windows Presentation Foundation)\uc5d0\uc11c Prism \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ubaa8\ub4c8\ud615 \uc544\ud0a4\ud14d\ucc98\ub97c \uc81c\uacf5\ud558\uc5ec \ub300\uaddc\ubaa8 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uac1c\ubc1c\uc744 \uc6a9\uc774\ud558\uac8c \ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Prism\uc744 \uc0ac\uc6a9\ud558\uc5ec WPF \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc2a4\ud0c0\uc77c\uacfc \ud14c\ub9c8\ub97c \uc801\uc6a9\ud558\uace0, \uc0ac\uc6a9\uc790 \uc815\uc758 \uc2a4\ud0c0\uc77c\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uae4a\uc774 \uc788\ub294 \uc124\uba85\uacfc \uc608\uc81c\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. 1. Prism \uc18c\uac1c Prism\uc740 WPF, Xamarin, Unity \ub4f1 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Prism\uc740 MVVM(\ubaa8\ub378-\ubdf0-\ubdf0\ubaa8\ub378)\u2026","rel":"","context":"&quot;WPF \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"WPF \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/wpf-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31129","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=31129"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31129\/revisions"}],"predecessor-version":[{"id":31130,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31129\/revisions\/31130"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=31129"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=31129"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=31129"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}