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.
コンテキスト: Visual Studio 2012、C# 4.0
開発者が XAML ファイルにコードを記述できるようにしたいと考えています。ただし、使用するスキーマ (これが正しい言葉かどうかはわかりません) を制限して、各属性の値が Intellisense で自動的にポップアップするようにする必要があります。
これは次のように解決できます。
以下のようなクラスがあります。
using MyNamespace { public class MyClass {...} }
次に、xaml ファイルで次のようにします。
<MyClass xmlns="clr-namespace:MyNamespace;assembly={assembly name in which this namespace exists"></MyClass>