WinRTのXAMLにプリミティブを追加できる人はいますか?WinRTを除くすべてのXAMLベースのテクノロジで標準である次のものを実行しようとしています。
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:System="using:System">
<System:Double x:Key="MyWidth">550</System:Double>
</ResourceDictionary>
これはVisualStudioでエラーを表示しませんが、「タイプ'Double'が見つかりませんでした...」というメッセージとともにXamlParseExceptionをスローします。
ありがとう!