1
我有這樣一個按鈕:不能使用自定義內容複製按鈕
<Button Name="btnSave" Click="BtnSave_OnClick" Margin="5,0,0,0" MinWidth="50" ToolTip="SAVE">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Image Height="24" HorizontalAlignment="Center" Source="/MyProject;component/Images/diskette.png" Width="24" />
<TextBlock Grid.Row="1" HorizontalAlignment="Center" Text="SAVE" />
</Grid>
</Button>
此按鈕裏面走形式,打開FormB當我想克隆btnSave到FormB但它只是創造了一個內容= NULL按鈕。
// On formA
FormB formB = new FormB();
formB.Loaded += (s, e1) =>
{
formA.Children.Remove(btnSave);
formB.Children.Add(btnSave);
};
formB.Show();
調試時,btnSave.Content always = null。 我嘗試了很多方法來解決這個問題,就像將內容放入樣式中一樣......但沒有運氣。 你有什麼想法或者我做錯了什麼? 謝謝
謝謝,它就像魅力:) –