Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DataContextにobject型のプロパティがある場合。
xamlを使用してこのプロパティに10進値を割り当てるにはどうすればよいですか?
やってみたら
<test:Test Prop="2" />
これにより、10進値ではなく、文字列値が割り当てられます。
私は自分で解決策を見つけました。
<test:Test> <test:Test.Property> <System:Decimal>5</System:Decimal> </test:Test.Property> </test:Test>
プロパティTest.Propのタイプがdecimalの場合、組み込みのタイプコンバーターを使用して自動的に10進数に変換します。