別のプロジェクトにある以下StringRresouces.ja-jp.xamlにある文字列情報について、ユーザーコントロールのコードビハインド(cs)から取得するにはどうすればいいでしょうか。
MainWindow.xaml.csでは以下のようにして取得できているのですが、ユーザーコントロールからの方法が分からずに詰まってます。
<MainWindow.xaml.cs>
C#
1string moji = (string)this.FindResource("setting");
※以下コードについては下記URLのスレにてTN8001さんからの回答をいただいたコードをベースにしております。
https://teratail.com/questions/224205
<StringResource.ja-jp.xaml>
xaml
1<ResourceDictionary 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 xmlns:system="clr-namespace:System;assembly=mscorlib"> 5 <system:String x:Key="language">言語</system:String> 6 <system:String x:Key="setting">設定</system:String> 7</ResourceDictionary>
回答1件
あなたの回答
tips
プレビュー