나는 당신의 문제를 해결했다. 내가 한 것은 ListPicker Itemsource를 .xaml에 바인딩 한 것이지 코드 뒤에있는 것이 아니므로 완벽하게 작동했습니다.
공공 부분 클래스 MainPage
<toolkit:ListPicker ItemsSource="{Binding LstCountry}" SelectedIndex="55" x:Name="listPickerCountrySignup" Height="72" HorizontalAlignment="Left" Margin="14,43,0,0" VerticalAlignment="Top" Width="436" FullModeHeader="Select Country" Background="White" BorderBrush="White" CacheMode="BitmapCache" >
.xaml.cs 코드 :
이
당신이 제공하는 파일의 편집 .xaml 코드하여 PhoneApplicationPage, { // 생성자 공공에서 INotifyPropertyChanged MainPage() { InitializeComponent(); BindList(); this.DataContext = this; }
public class country
{
public int CountryID { get; set; }
}
public event PropertyChangedEventHandler PropertyChanged;
void NotifyPropertyChanged(String propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (null != handler)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
List<country> _lstCountry;
public List<country> LstCountry
{
get{return _lstCountry;}
set{
if(_lstCountry!=value)
{
_lstCountry = value;
NotifyPropertyChanged("LstCountry");
}
}
}
void BindList()
{
LstCountry = new List<country>();
for (int i = 0; i <= 100; i++)
{
LstCountry.Add(new country { CountryID = i });
}
}
private void button1_Click(object sender, RoutedEventArgs e)
{
listPickerCountrySignup.SelectedIndex = 15;
}
private void button2_Click(object sender, RoutedEventArgs e)
{
listPickerCountrySignup.SelectedIndex = 25;
}
private void button3_Click(object sender, RoutedEventArgs e)
{
listPickerCountrySignup.SelectedIndex = 39;
}
private void button4_Click(object sender, RoutedEventArgs e)
{
listPickerCountrySignup.SelectedIndex = 55;
}
private void button5_Click(object sender, RoutedEventArgs e)
{
listPickerCountrySignup.SelectedIndex = 75;
}
}
문제가 여전히 가능한 가장 작은 크기로 줄이십시오. 아니요, 당신의 출처의 크기를 모르지만 그것으로 연결하면 좋지 않을 것이라는 믿음을 갖게됩니다. 좋은 징후는 문제가되지 않습니다. 또한, 범죄는 없지만, 나는이 날과 나이에 임의의 링크를 클릭하는 것을 매우 좋아하지 않습니다 ... –
@lc. 그것의 다만 1 개 페이지 및 1.5 MB보다는 더 많은 것 그것은 문제의 더 나은 정류를 위해 사용하고있는 실버 라이트 툴킷 dll을 conatins. 그리고 샘플 코드를 업로드 한 후 많은 버전과 실버 라이트 테이크 세트 세트를 변경했습니다. 나는 11 월 verion 공식 1을 사용하고있다 –