在WPF的形式,我有一個以上的其他控制擴張的膨脹,如按鈕:WPF膨脹沒有展開上述按鈕,使按鈕無法點擊
<Expander Grid.Row="0" Panel.ZIndex="99" Name="searchMenuExpander" Header="Search menu" FontWeight="Bold" HorizontalAlignment="Stretch" Margin="10,10,0,0" MinWidth="510" MinHeight="200" VerticalAlignment="Top" Foreground="MidnightBlue" Cursor="Arrow">
<Grid Background="White">
<Border HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
<TextBlock Text="Name" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="20,10,0,0" Width="65" Height="20" Cursor="Arrow" />
<TextBox Name="nameSearchTextBox" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="115,10,0,0" Width="100" Height="20"/>
</Grid>
</Expander>
<Button Content="Button" Height="34" Width="85"/>
我的問題是,我的控制是擴張的背後是不再可點擊,即使擴展器未擴展。發生什麼事?我怎麼能擺脫這個錯誤?
什麼是包裝你的'Expander'父控件? –
按鈕的畫布定位的目的是什麼? – Kryptos
父控件只是一個網格。忘記畫布,它是更大代碼的一部分,但在這裏並不重要。我編輯了我的問題以將其刪除 – MarinD