Posted 16 years ago
by Ina Frotzscher
Version: 9.1.0501
Platform: .NET 3.5
Environment: Windows XP (32-bit)
Hi,
I have a strange problem with dragging of toolwindows, if a document contains certain controls, e.g. WPFToolkits Calendar. Here's the sample coding:When I start this little program and I drag the tool windows to the bottom the calendar popup and the combobox stop reacting to mouse input. I would have prevented this error by not using WPFToolkits Calendar control but this problem occurs with other controls, which are more essential to my applications, e.g. Xceeds Datagrid with grouped data.
I hope you can solve this problem or give me a workaround.
Thanks in advance for your help.
[Modified at 07/02/2009 03:11 AM]
I have a strange problem with dragging of toolwindows, if a document contains certain controls, e.g. WPFToolkits Calendar. Here's the sample coding:
<Window x:Class="ActiproBug.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:actipro="clr-namespace:ActiproSoftware.Windows.Controls.Docking;assembly=ActiproSoftware.Docking.Wpf30"
xmlns:toolkit="clr-namespace:Microsoft.Windows.Controls;assembly=WPFToolkit"
Title="Window1" Height="300" Width="300">
<Grid>
<actipro:DockSite Name="dsSite" CanToolWindowsDockTop="False">
<actipro:SplitContainer>
<actipro:Workspace Background="White" >
<actipro:TabbedMdiContainer>
<actipro:DocumentWindow>
<StackPanel>
<toolkit:DatePicker />
<ComboBox>
<ComboBoxItem Content="1"/>
<ComboBoxItem Content="2"/>
</ComboBox>
</StackPanel>
</actipro:DocumentWindow>
</actipro:TabbedMdiContainer>
</actipro:Workspace>
<actipro:ToolWindowContainer>
<actipro:ToolWindow Title="1" />
<actipro:ToolWindow Title="2" />
</actipro:ToolWindowContainer>
</actipro:SplitContainer>
</actipro:DockSite>
</Grid>
</Window>
I hope you can solve this problem or give me a workaround.
Thanks in advance for your help.
[Modified at 07/02/2009 03:11 AM]