私はC#WPF.NET3.5でプログラムを開発しています。以下のように日時ピッカーを追加したウィンドウがあります。
<Window x:Class="ProcessData"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Style="{StaticResource CustomWindow}"
Title="Process Data" Height="739" Width="576" WindowStartupLocation="CenterScreen" ResizeMode="CanMinimize">
<Grid>
<Button HorizontalAlignment="Right" Margin="0,521,14,0" Name="buttonProcess" Width="106.5" Height="32" VerticalAlignment="Top" Click="buttonProcess_Click">Process</Button>
<Label Height="28" HorizontalAlignment="Left" Margin="16,597,0,0" Name="labelDateAndTime" VerticalAlignment="Top" Width="120">Date and time</Label>
<WindowsFormsHost Height="26" HorizontalAlignment="Left" Margin="16,625,0,0" Name="windowsFormsHostDateAndTime" VerticalAlignment="Top" Width="191">
<wf:DateTimePicker x:Name="dtpickerDateAndTime" Format="Custom" CustomFormat="MM/dd/yyyy hh:mm:ss tt"></wf:DateTimePicker>
</WindowsFormsHost>
</Grid>
Loadedイベントハンドラーを追加しました。このハンドラーでは、UI関連の処理を5〜6秒間実行します。ウィンドウが起動すると、日時ピッカーが最初に表示され、5〜6秒間留まります。次に、ウィンドウの残りの部分が表示されます。日時ピッカーが早く表示されないようにするにはどうすればよいですか?
よろしくお願いします。
オタク