{"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":[],"_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}]}}