我想開發一個Windows 8 Metro應用程序我需要創建任意數量的單選按鈕,但Checked事件處理程序不會啓動。
我在一些文章中看到我必須啓用AutoPostBack。
請讓我知道它是哪個命名空間?此外,我發現它是在System.Web.UI.Webcontrols,但我無法包括名字空間..
我使用的Visual Studio 2012最終是否有幫助關於動態創建的單選按鈕在c#
RadioButton rad=new RadioButton();
rad.HorizontalAlignment = HorizontalAlignment.Left;
rad.VerticalAlignment = VerticalAlignment.Top;
rad.Margin = new Thickness(1100, x, 0, 0);
rad.Width = 35;
rad.Height = 30;
rad.GroupName = "group1";
rad.IsEnabled = true;
rad.Checked += new RoutedEventHandler(radbtn);
gridit.Children.Add(rad[i]);
void radbtn(object obj, RoutedEventArgs e)
{
edit_del_tb.Text = "Testing";
}
哪裏是你的代碼,你試過嗎? –
你顯然沒有搜索之前詢問...谷歌搜索「autopostback」在第一個結果中提供了很好的答案... –
RadioButton確實在System.Web.UI.WebControls.RadioButton中,一旦你創建了一個實例鍵入服務器端,可以將其AutoPostBack屬性設置爲true –