{"id":78989,"date":"2024-03-20T20:33:50","date_gmt":"2024-03-20T11:33:50","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/"},"modified":"2025-08-12T04:51:10","modified_gmt":"2025-08-11T19:51:10","slug":"wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/","title":{"rendered":"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5"},"content":{"rendered":"<p>\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0\u306a\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001WPF\u306ePath\u8981\u7d20\u3068Geometry\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u3066\u5f62\u72b6\u3092\u5b9a\u7fa9\u3057\u307e\u3059\u3002\u4ee5\u4e0b\u306bWPF\u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0\u306e\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u306e\u7c21\u5358\u306a\u4f8b\u3092\u793a\u3057\u307e\u3059\u3002<\/p>\n<ol>\n<li>\u65b0\u3057\u3044 WPF \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/li>\n<li>MainWindow.xaml \u306b MyShapeControl \u3068\u3044\u3046\u30ab\u30b9\u30bf\u30e0 \u30e6\u30fc\u30b6\u30fc \u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u5b9a\u7fa9\u3057\u3001\u305d\u3053\u3067 Canvas \u3092\u30eb\u30fc\u30c8\u8981\u7d20\u3068\u3057\u3066\u8ffd\u52a0\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>&lt;UserControl x:Class=\"YourNamespace.MyShapeControl\"\r\n             xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\r\n             xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\r\n             xmlns:mc=\"http:\/\/schemas.openxmlformats.org\/markup-compatibility\/2006\" \r\n             xmlns:d=\"http:\/\/schemas.microsoft.com\/expression\/blend\/2008\" \r\n             mc:Ignorable=\"d\" \r\n             d:DesignHeight=\"450\" d:DesignWidth=\"800\"&gt;\r\n    &lt;Canvas x:Name=\"canvas\"\/&gt;\r\n&lt;\/UserControl&gt;\r\n<\/code><\/pre>\n<ol>\n<li>MyShapeControl\u306e\u30b3\u30fc\u30c9\u30d5\u30a1\u30a4\u30eb\u306b\u304a\u3044\u3066\u3001\u81ea\u7531\u5f62\u72b6\u306ePath\u30c7\u30fc\u30bf\u3092\u53d7\u3051\u53d6\u308b\u305f\u3081\u306e\u4f9d\u5b58\u95a2\u4fc2\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u5b9a\u7fa9\u3057\u307e\u3059\uff1a<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">partial<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title\">MyShapeControl<\/span> : <span class=\"hljs-title\">UserControl<\/span>\r\n{\r\n    <span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">static<\/span> <span class=\"hljs-keyword\">readonly<\/span> DependencyProperty PathDataProperty =\r\n        DependencyProperty.Register(<span class=\"hljs-string\">\"PathData\"<\/span>, <span class=\"hljs-keyword\">typeof<\/span>(Geometry), <span class=\"hljs-keyword\">typeof<\/span>(MyShapeControl), <span class=\"hljs-keyword\">new<\/span> PropertyMetadata(<span class=\"hljs-literal\">null<\/span>, OnPathDataChanged));\r\n\r\n    <span class=\"hljs-keyword\">public<\/span> Geometry PathData\r\n    {\r\n        <span class=\"hljs-keyword\">get<\/span> { <span class=\"hljs-keyword\">return<\/span> (Geometry)GetValue(PathDataProperty); }\r\n        <span class=\"hljs-keyword\">set<\/span> { SetValue(PathDataProperty, <span class=\"hljs-keyword\">value<\/span>); }\r\n    }\r\n\r\n    <span class=\"hljs-function\"><span class=\"hljs-keyword\">private<\/span> <span class=\"hljs-keyword\">static<\/span> <span class=\"hljs-keyword\">void<\/span> <span class=\"hljs-title\">OnPathDataChanged<\/span>(<span class=\"hljs-params\">DependencyObject d, DependencyPropertyChangedEventArgs e<\/span>)<\/span>\r\n    {\r\n        MyShapeControl shapeControl = (MyShapeControl)d;\r\n        shapeControl.DrawPathData();\r\n    }\r\n\r\n    <span class=\"hljs-function\"><span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-title\">MyShapeControl<\/span>()<\/span>\r\n    {\r\n        InitializeComponent();\r\n    }\r\n\r\n    <span class=\"hljs-function\"><span class=\"hljs-keyword\">private<\/span> <span class=\"hljs-keyword\">void<\/span> <span class=\"hljs-title\">DrawPathData<\/span>()<\/span>\r\n    {\r\n        canvas.Children.Clear();\r\n        <span class=\"hljs-keyword\">if<\/span> (PathData != <span class=\"hljs-literal\">null<\/span>)\r\n        {\r\n            Path path = <span class=\"hljs-keyword\">new<\/span> Path();\r\n            path.Data = PathData;\r\n            path.Stroke = Brushes.Black;\r\n            path.Fill = Brushes.Transparent;\r\n            canvas.Children.Add(path);\r\n        }\r\n    }\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>MainWindow.xaml \u3067 MyShapeControl \u3092\u4f7f\u7528\u3057\u3066\u3001PathData \u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u30d1\u30b9\u30c7\u30fc\u30bf\u306b\u30d0\u30a4\u30f3\u30c9\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>&lt;Window x:Class=\"YourNamespace.MainWindow\"\r\n        xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\r\n        xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\r\n        xmlns:local=\"clr-namespace:YourNamespace\"\r\n        Title=\"MainWindow\" Height=\"450\" Width=\"800\"&gt;\r\n    &lt;Grid&gt;\r\n        &lt;local:MyShapeControl PathData=\"{Binding MyPathData}\"\/&gt;\r\n    &lt;\/Grid&gt;\r\n&lt;\/Window&gt;\r\n<\/code><\/pre>\n<ol>\n<li>MainWindow\u306e\u30b3\u30fc\u30c9\u30d5\u30a1\u30a4\u30eb\u3067\u3001ViewModel\u3092\u5b9a\u7fa9\u3057\u3001MyPathData\u30d7\u30ed\u30d1\u30c6\u30a3\u306b\u30ab\u30b9\u30bf\u30e0\u306ePath\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">partial<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title\">MainWindow<\/span> : <span class=\"hljs-title\">Window<\/span>\r\n{\r\n    <span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title\">ViewModel<\/span> : <span class=\"hljs-title\">INotifyPropertyChanged<\/span>\r\n    {\r\n        <span class=\"hljs-keyword\">private<\/span> Geometry myPathData;\r\n        <span class=\"hljs-keyword\">public<\/span> Geometry MyPathData\r\n        {\r\n            <span class=\"hljs-keyword\">get<\/span> { <span class=\"hljs-keyword\">return<\/span> myPathData; }\r\n            <span class=\"hljs-keyword\">set<\/span>\r\n            {\r\n                <span class=\"hljs-keyword\">if<\/span> (myPathData != <span class=\"hljs-keyword\">value<\/span>)\r\n                {\r\n                    myPathData = <span class=\"hljs-keyword\">value<\/span>;\r\n                    OnPropertyChanged(<span class=\"hljs-string\">\"MyPathData\"<\/span>);\r\n                }\r\n            }\r\n        }\r\n\r\n        <span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">event<\/span> PropertyChangedEventHandler PropertyChanged;\r\n\r\n        <span class=\"hljs-function\"><span class=\"hljs-keyword\">protected<\/span> <span class=\"hljs-keyword\">virtual<\/span> <span class=\"hljs-keyword\">void<\/span> <span class=\"hljs-title\">OnPropertyChanged<\/span>(<span class=\"hljs-params\"><span class=\"hljs-built_in\">string<\/span> propertyName<\/span>)<\/span>\r\n        {\r\n            PropertyChanged?.Invoke(<span class=\"hljs-keyword\">this<\/span>, <span class=\"hljs-keyword\">new<\/span> PropertyChangedEventArgs(propertyName));\r\n        }\r\n    }\r\n\r\n    <span class=\"hljs-function\"><span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-title\">MainWindow<\/span>()<\/span>\r\n    {\r\n        InitializeComponent();\r\n\r\n        ViewModel viewModel = <span class=\"hljs-keyword\">new<\/span> ViewModel();\r\n        viewModel.MyPathData = Geometry.Parse(<span class=\"hljs-string\">\"M 10,10 L 50,10 50,50 10,50 Z\"<\/span>);\r\n\r\n        DataContext = viewModel;\r\n    }\r\n}\r\n<\/code><\/pre>\n<p>\u5148\u307b\u3069\u306e\u4f8b\u3067\u3001MyShapeControl\u306f\u81ea\u7531\u306a\u5f62\u72b6\u3092\u63cf\u304f\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u308b\u30ab\u30b9\u30bf\u30e0\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3067\u3059\u3002\u6839\u8981\u7d20\u3068\u3057\u3066Canvas\u3092\u4f7f\u7528\u3057\u3066\u304a\u308a\u3001\u305d\u3053\u3067PathData\u3068\u3044\u3046\u5c5e\u6027\u3092MyPathData\u3068\u3044\u3046\u5c5e\u6027\u306b\u30d0\u30a4\u30f3\u30c9\u3059\u308bPath\u8981\u7d20\u3092\u63cf\u753b\u3057\u307e\u3059\u3002MyPathData\u306e\u5024\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u3067\u3001\u81ea\u7531\u306a\u5f62\u72b6\u306e\u8868\u73fe\u3092\u5909\u66f4\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>\u3053\u306e\u30b5\u30f3\u30d7\u30eb\u304c\u3001\u81ea\u7531\u5f62\u72b6\u306e\u30e6\u30fc\u30b6\u30fc \u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u306e\u306b\u5f79\u7acb\u3066\u3070\u5e78\u3044\u3067\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0\u306a\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001WPF\u306ePath\u8981\u7d20\u3068Geometry\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u3066\u5f62\u72b6\u3092\u5b9a\u7fa9\u3057\u307e\u3059\u3002\u4ee5\u4e0b\u306bWPF\u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0\u306e\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u306e\u7c21\u5358\u306a\u4f8b\u3092\u793a\u3057\u307e\u3059\u3002 \u65b0\u3057\u3044  [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[26,61],"class_list":["post-78989","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-26","tag-61"],"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>WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5 - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\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\/ja\/blog\/wpf-\u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0-\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5\" \/>\n<meta property=\"og:description\" content=\"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/wpf-\u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0-\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-20T11:33:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-11T19:51:10+00:00\" \/>\n<meta name=\"author\" content=\"\u967d, \u5411\u5b87\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u967d, \u5411\u5b87\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"7\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/\",\"name\":\"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5 - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-20T11:33:50+00:00\",\"dateModified\":\"2025-08-11T19:51:10+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c\"},\"description\":\"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c\",\"name\":\"\u967d, \u5411\u5b87\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g\",\"caption\":\"\u967d, \u5411\u5b87\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/hinatasora\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5 - Blog - Silicon Cloud","description":"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","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\/ja\/blog\/wpf-\u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0-\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\/","og_locale":"ja_JP","og_type":"article","og_title":"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5","og_description":"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/wpf-\u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0-\u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-20T11:33:50+00:00","article_modified_time":"2025-08-11T19:51:10+00:00","author":"\u967d, \u5411\u5b87","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u967d, \u5411\u5b87","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"7\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/","name":"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5 - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-20T11:33:50+00:00","dateModified":"2025-08-11T19:51:10+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c"},"description":"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"WPF \u3067\u30d5\u30ea\u30fc\u30d5\u30a9\u30fc\u30e0 \u30e6\u30fc\u30b6\u30fc\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u4f5c\u6210\u306e\u65b9\u6cd5"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c","name":"\u967d, \u5411\u5b87","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g","caption":"\u967d, \u5411\u5b87"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/hinatasora\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/wpf-%e3%81%a7%e3%83%95%e3%83%aa%e3%83%bc%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%b3%e3%83%b3%e3%83%88%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/78989","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=78989"}],"version-history":[{"count":3,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/78989\/revisions"}],"predecessor-version":[{"id":332286,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/78989\/revisions\/332286"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=78989"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=78989"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=78989"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}