2013-11-21 162 views
0

我有這個RadioButtonList包含很多項目,所以我需要添加一個垂直滾動條。這是我添加項目在RadioButtonList添加滾動條到RadioButtonList

var Meals = Factory.Meals.List(); 
    var MealVotes = Factory.MealVotes.List(item => item.VoteDate == DateTime.Today); 
    var MealVote = Factory.MealVotes.List(item => item.VoteDate == DateTime.Today && item.UserId == Instance.CurrentUserId).ToList().FirstOrDefault(); 

     foreach (var meal in Meals) 
     { 
      mealVotes = 0; 
      TotalVotes = 0; 

      foreach (var mealVote in MealVotes) 
      { 
       if (meal.Id == mealVote.MealId) 
       { 
        mealVotes++; 
       } 

       TotalVotes++; 
      } 

      if (TotalVotes > 0) 
      { 
       Width = (100M/TotalVotes) * mealVotes; 
      }; 

      VoteMealRadioButtonList.Items.Add(
       new ListItem(
        meal.Title + " " + mealVotes + 
        @"<div style=""height: 10px; width:130px;"">" + 
         @"<a style=""float: left; width: 30px""></a>" + 
         @"<div style=""float: left; height: 10px; width:" + Width + @"px; background: DarkCyan;""></div>" + 
        "</div>", 
        meal.Id.ToString() 
       ) 
      ); 
     } 

     VoteMealRadioButtonList.SelectedValue = MealVote.MealId.ToString(); 

它看起來像這樣的代碼:

enter image description here

不要擔心名單和膳食名稱(這是我的母語)。如果List中充滿了這樣的餐食量,這將不會成爲問題,但會有50餐或類​​似的東西,所以這就是爲什麼我想添加一個垂直滾動條。

無論如何我可以添加一個滾動條?

回答

1

爲什麼你不把radiobuttonlist放入div並將滾動條添加到這個div?

+0

RadioButtonList已經在div中。我沒有意識到我可以先滾動到div。謝謝,現在解決了:) – etritb