本文介绍了需要在单选按钮组周围的路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 您好我是Exp Blend中新的Silverlight设计。I am new Silverlight designing in Exp Blend .我 需要一个路径 round 一组单选按钮,以便在银色页面上可以看到更多。 我怎样才能创建这种类型的路径。?I need a path round group of radio button so that it can be more visible on a silverlight page. How can i create such type of the path .?请帮帮我..? Rajesh Kumar Singh SSE R Systems,Noida(印度)Rajesh Kumar Singh SSE R Systems ,Noida(India)推荐答案 其中包含路径的网格和其中包含radioButtons的stackPanel将为1。A grid with a path in it and a stackPanel with radioButtons in it would be one.以下示例使用Border控件... The following example makes use of the Border control...<Grid x:Name="LayoutRoot" Background="White" ><Border Height="100" VerticalAlignment="Top" BorderThickness="2" BorderBrush="Red" Margin="231,137,303,0" CornerRadius="10"><StackPanel Margin="5"><RadioButton Content="RadioButton" Margin="0,5"/><RadioButton Content="RadioButton" Margin="0,5"/><RadioButton Content="RadioButton" Margin="0,5"/></StackPanel></Border></Grid>看起来像这样...... And looks like this... 希望能给你一些想法。 ~Christine ~Christine 这篇关于需要在单选按钮组周围的路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-29 20:15