为什么总要输入toolkit:
本帖最后由 ddrsun 于 2013-05-22 14:55:10 编辑 在用第三方控件的时候,总是要输入这个toolkit:??
例如我用Dockpanel
<toolkit:DockPanel LastChildFill="False">
<Button toolkit:DockPanel.Dock="Left" Background="Red" Content="1"></Button>
<Button toolkit:DockPanel.Dock="Top" Background="AliceBlue" Content="2"></Button>
<Button toolkit:DockPanel.Dock="Right" Background="Beige" Content="3" >
</Button>
<Button toolkit:DockPanel.Dock="Bottom" Background="Blue" Content="4"></Button>
<Button Background="Coral" Content="5"></Button>
<Button Background="Firebrick" Content="6"></Button>
<Button Background="OldLace" Content="7"></Button>
</toolkit:DockPanel>