2
IM使用大量的文本框和標籤,有很多常見的旁邊,我的問題是如果 在wpf而不是複製粘貼?使用文本框和標籤繼承
例如,如果我有以下的文本框,而不是名稱和屏幕 的地方,我想所有的文本框具有相同的行爲
<TextBox x:Name="name2"
AcceptsReturn="True"
AllowDrop="True"
PreviewDragEnter="DropText_PreviewDragEnter"
PreviewDrop="DropText_PreviewDrop"
PreviewDragOver="DropText_PreviewDragOver"
HorizontalAlignment="Left" Height="20" TextWrapping="Wrap"
VerticalAlignment="Top" Width="80" Grid.Column="4" Margin="4,50,0,0" Grid.Row="2"
/>
<TextBox x:Name="name1"
AcceptsReturn="True"
AllowDrop="True"
PreviewDragEnter="DropText_PreviewDragEnter"
PreviewDrop="DropText_PreviewDrop"
PreviewDragOver="DropText_PreviewDragOver"
HorizontalAlignment="Left"
Height="20"
TextWrapping="Wrap"
Text="" VerticalAlignment="Top" Width="80" Grid.Column="4" Margin="4,75,0,0" Grid.Row="2"/>
使用樣式。見例如[WPF導覽](http://www.codeproject.com/Articles/18388/A-Guided-Tour-of-WPF-Part-5-Styles)或[在WPF視頻中使用樣式](http:///www.youtube.com/watch?v=CBs5eEsIk3A)。 – LPL