0

メインページのWindowsフォームホストの上にExpanderコントロールを表示し、残りのすべての領域にWindowsフォームホストを入力させようとしています。

ただし、エキスパンダーは上部ではなく側面に表示されます。

これが基本的に私がこれまでに持っているものです。私は余分なものを省きました。

<telerik:RadDockPanel x:Name="LaunchScreenDockPanel" LastChildFill="True">
    <telerik:RadExpander x:Name="UserInfo" ExpandDirection="Up" IsExpanded="True"></telerik:RadExpander>
    <WindowsFormsHost HorizontalAlignment="Stretch" Name="windowsFormsHost1" VerticalAlignment="Stretch" >           
        <wincontrols:RadPanorama x:Name="LaunchPadPanorama" Size="200,400" RowsCount="2" MinimumColumns="2" ShowGroups="True" Dock="Fill">
4

1 に答える 1

1

これを試して:

<telerik:RadExpander telerik:RadDockPanel.Dock="Top" .../>
于 2013-01-10T21:27:09.790 に答える