問題は説明が簡単で、少なくとも私にとっては理解しにくいので、3つのタブアイテムを持つタブコントロールがあり、タブアイテムの1つに、タブを変更すると、いくつかのデータのレポートをロードするwpfレポートビューアーがあります。 CrystalReport が含まれているタブに戻っても、CrystalReport ビューアーはもうありません。レポートを更新するためのボタンも上部にあり、ボタンはまだありますが、クリスタルレポートコントロールはもうありません!
私のxamlは次のようになります
<UserControl x:Class="uccvrFactuur"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:my="clr-namespace:SAPBusinessObjects.WPF.Viewer;assembly=SAPBusinessObjects.WPF.Viewer"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Button Content="Report" Height="50" HorizontalAlignment="Right" Margin="5" Name="Button1" VerticalAlignment="Top" Width="50" />
<my:CrystalReportsViewer Name="crvFactuur" Margin="0,60,0,0" />
</Grid>
</UserControl>
そのタブを初めてクリックしたときにコントロールがあると言わなければなりませんが、タブを変更して戻ると、コントロールはもうありません。
前もって感謝します