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>