我遇到了这个非常令人沮丧的问题,当我显示一个带有RadioButtons的ListBox的弹出窗口时,第一个项目显示为裁剪。我花了差不多两个小时试图解决它,但我不能。我知道这是一个非常愚蠢的问题,但我的想法已经用完了。
有关如何解决此问题的任何想法?当按下某个按钮时,弹出窗口显然会出现,这就是它出现的方式:
这就是XAML:
<Popup Grid.Row="1" Grid.RowSpan="4" x:Name="popupDateSelection" HorizontalAlignment="Center" Width="400">
<Grid>
<Border BorderBrush="White" BorderThickness="4" Width="400">
<Border.Background>
<SolidColorBrush Color="Black" Opacity=".9" />
</Border.Background>
<ListBox>
<ListBoxItem>
<ListBoxItem.Content>
<RadioButton Content="Item 1" Checked="radioButtonDates_Checked" />
</ListBoxItem.Content>
</ListBoxItem>
<ListBoxItem>
<ListBoxItem.Content>
<RadioButton Content="Item 2" Checked="radioButtonDates_Checked" />
</ListBoxItem.Content>
</ListBoxItem>
<ListBoxItem>
<ListBoxItem.Content>
<RadioButton Content="Item 3" Checked="radioButtonDates_Checked" />
</ListBoxItem.Content>
</ListBoxItem>
<ListBoxItem>
<ListBoxItem.Content>
<RadioButton Content="Item 4" Checked="radioButtonDates_Checked" />
</ListBoxItem.Content>
</ListBoxItem>
</ListBox>
</Border>
</Grid>
</Popup>
感谢。
答案 0 :(得分:0)
<Grid Margin="0,20">
也许?