이걸로 프로그래밍 윈도우 폰 응용 프로그램에서 라디오 버튼을 만드는거야 :C#을 함께 WP에 높이와 라디오 버튼의 여백을 설정하는 방법
int items = count/2;
string[] ctrl= new string[items];
RadioButton [] radioButtons = new RadioButton[items];
for (int i = 0; i < items; i++)
{
radioButtons[i] = new RadioButton();
radioButtons[i].Content = EffectsArray[i];
stackPanelEffRadio.Children.Add(radioButtons[i]);
}
나는 이러한 라디오 버튼에 마진 및/또는 높이를 설정하려는 예 :
radiobuttons[i].Margin = .........
올바른 방법은 무엇입니까?
= 새로운 두께 (...) 아마? – bit