Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/wcf/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Windows phone 8 单击“单击事件处理程序”时,“选择已更改”事件正在上升_Windows Phone 8 - Fatal编程技术网

Windows phone 8 单击“单击事件处理程序”时,“选择已更改”事件正在上升

Windows phone 8 单击“单击事件处理程序”时,“选择已更改”事件正在上升,windows-phone-8,Windows Phone 8,对不起,这个愚蠢的问题。我甚至不明白这个问题的标题应该是什么 我有3个按钮,当我点击它们时,应该会显示列表框。 如果我在列表框中选择了一个项目,它应该被导航并开始播放 当我点击一个按钮时,列表框正在显示,当一个项目被选中时,它将导航到其他页面并播放。执行选择后,如果我点击任何按钮,则会发生如下错误 tori.dll中发生类型为“System.NullReferenceException”的第一次意外异常 tori.dll中发生类型为“System.NullReferenceException”的

对不起,这个愚蠢的问题。我甚至不明白这个问题的标题应该是什么

我有3个按钮,当我点击它们时,应该会显示列表框。 如果我在列表框中选择了一个项目,它应该被导航并开始播放

当我点击一个按钮时,列表框正在显示,当一个项目被选中时,它将导航到其他页面并播放。执行选择后,如果我点击任何按钮,则会发生如下错误

tori.dll中发生类型为“System.NullReferenceException”的第一次意外异常

tori.dll中发生类型为“System.NullReferenceException”的未处理异常

Archieves.xaml:

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,-951,0">
        <Button Name="btn1" Click="btn1_Click" Content="Daily" HorizontalAlignment="Left" Margin="0,88,0,0" VerticalAlignment="Top" Width="127" Height="72"/>
       <Button Name="btn2" Click="btn2_Click" Content="Weekly" HorizontalAlignment="Left" Margin="132,88,0,0" VerticalAlignment="Top" Height="72" Width="140"/>
      <Button Name="btn3" Click="btn3_Click" Content="CurrentMonth" HorizontalAlignment="Left" Margin="277,88,0,0" VerticalAlignment="Top" Height="72" Width="169"/>
                    <ListBox x:Name="itemsList" Margin="0,225,945,0"  
                SelectionChanged="itemsList_SelectionChanged">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Grid Height="130">
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="100"/>
                            <ColumnDefinition Width="*"/>
                        </Grid.ColumnDefinitions>
                        <Image delay:LowProfileImageLoader.UriSource="{Binding ThumbnailUrl}" 
                               Grid.Column="0" 
                               Width="500" 
                               Height="125" 
                               VerticalAlignment="Center" 
                               HorizontalAlignment="Center" 
                               Margin="6"/>
                        <StackPanel Margin="10,20,0,0"
                                    Grid.Column="1"
                                    Height="60"
                                    Orientation="Horizontal" 
                                    VerticalAlignment="Center">
                            <TextBlock Text="{Binding title}" 
                                       FontSize="40" />

                        </StackPanel>
                    </Grid>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
       </Grid>
namespace tori
{
    public partial class Archieves : PhoneApplicationPage
    {
        public Archieves()
       {
            InitializeComponent();
       }

    private void btn1_Click(object sender, RoutedEventArgs e)
    {
        WebClient downloader = new WebClient();
        Uri uri = new Uri(" http://www.toucheradio.com/RSSFeed/rssDaily.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(ChannelDownloaded);
        downloader.DownloadStringAsync(uri);
    }

    void ChannelDownloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Result == null || e.Error != null)
        {
            MessageBox.Show("There was an error downloading the XML-file!");
        }


        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,
                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }

private void btn2_Click(object sender, RoutedEventArgs e)
    {
        WebClient downloader = new WebClient();
        Uri uri = new Uri(" http://www.toucheradio.com/RSSFeed/rssWeekly.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel1Downloaded);
        downloader.DownloadStringAsync(uri);
    }

       void Channel1Downloaded(object sender, DownloadStringCompletedEventArgs e)
       {
           if (e.Result == null || e.Error != null)
           {
               MessageBox.Show("There was an error downloading the XML-file!");
           }
        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,
                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }

private void btn3_Click(object sender, RoutedEventArgs e)
    {

        WebClient downloader = new WebClient();
        Uri uri = new Uri("http://www.toucheradio.com/RSSFeed/rssMonthly.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel2Downloaded);
        downloader.DownloadStringAsync(uri);
    }

    void Channel2Downloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Result == null || e.Error != null)
        {
            MessageBox.Show("There was an error downloading the XML-file!");
        }
        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,

                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }
    private void itemsList_SelectionChanged(Object sender, SelectionChangedEventArgs e)
    {
        var app = App.Current as App;
        app.selectedItem = (Item)itemsList.SelectedItem;
        this.NavigationService.Navigate(new Uri("/Details.xaml", UriKind.Relative));
    }
namespace tori
{
         public class Item
    {
        public string title { get; set; }
        public string ThumbnailUrl { get; set; }
        public string link { get; set; }
        public string pubDate { get; set; }
    }
} 
namespace tori
{
    public partial class Details : PhoneApplicationPage
    {
        Item item;

    public Details()
    {
        InitializeComponent();


         var app = App.Current as App;
       item = app.selectedItem;
       title.Text = item.title;
       pubDate.Text = item.pubDate;
        ThumbnailUrl.Source = new BitmapImage(new Uri(item.ThumbnailUrl, UriKind.RelativeOrAbsolute));
        string s = item.link;
        string url = s.Replace("archivesplayer", "hostArchivesURLForMobile");
        WebClient downloader = new WebClient();
        Uri uri = new Uri(url,UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel3Downloaded);
        downloader.DownloadStringAsync(uri);
    }

    void Channel3Downloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        var textData = (string)e.Result;
        Regex urlRegex = new Regex("<td height=\"25\" align=\"center\">(?<url>.*)</td>");
        MatchCollection mc = urlRegex.Matches(textData);
        string url = "";
        if (mc.Count > 0)
        {
            url = mc[0].Groups["url"].Value;
             MediaElement1.Source = new Uri(url, UriKind.Absolute);
             MediaElement1.Play();
        }
}
}
}
Item.cs:

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,-951,0">
        <Button Name="btn1" Click="btn1_Click" Content="Daily" HorizontalAlignment="Left" Margin="0,88,0,0" VerticalAlignment="Top" Width="127" Height="72"/>
       <Button Name="btn2" Click="btn2_Click" Content="Weekly" HorizontalAlignment="Left" Margin="132,88,0,0" VerticalAlignment="Top" Height="72" Width="140"/>
      <Button Name="btn3" Click="btn3_Click" Content="CurrentMonth" HorizontalAlignment="Left" Margin="277,88,0,0" VerticalAlignment="Top" Height="72" Width="169"/>
                    <ListBox x:Name="itemsList" Margin="0,225,945,0"  
                SelectionChanged="itemsList_SelectionChanged">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Grid Height="130">
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="100"/>
                            <ColumnDefinition Width="*"/>
                        </Grid.ColumnDefinitions>
                        <Image delay:LowProfileImageLoader.UriSource="{Binding ThumbnailUrl}" 
                               Grid.Column="0" 
                               Width="500" 
                               Height="125" 
                               VerticalAlignment="Center" 
                               HorizontalAlignment="Center" 
                               Margin="6"/>
                        <StackPanel Margin="10,20,0,0"
                                    Grid.Column="1"
                                    Height="60"
                                    Orientation="Horizontal" 
                                    VerticalAlignment="Center">
                            <TextBlock Text="{Binding title}" 
                                       FontSize="40" />

                        </StackPanel>
                    </Grid>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
       </Grid>
namespace tori
{
    public partial class Archieves : PhoneApplicationPage
    {
        public Archieves()
       {
            InitializeComponent();
       }

    private void btn1_Click(object sender, RoutedEventArgs e)
    {
        WebClient downloader = new WebClient();
        Uri uri = new Uri(" http://www.toucheradio.com/RSSFeed/rssDaily.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(ChannelDownloaded);
        downloader.DownloadStringAsync(uri);
    }

    void ChannelDownloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Result == null || e.Error != null)
        {
            MessageBox.Show("There was an error downloading the XML-file!");
        }


        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,
                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }

private void btn2_Click(object sender, RoutedEventArgs e)
    {
        WebClient downloader = new WebClient();
        Uri uri = new Uri(" http://www.toucheradio.com/RSSFeed/rssWeekly.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel1Downloaded);
        downloader.DownloadStringAsync(uri);
    }

       void Channel1Downloaded(object sender, DownloadStringCompletedEventArgs e)
       {
           if (e.Result == null || e.Error != null)
           {
               MessageBox.Show("There was an error downloading the XML-file!");
           }
        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,
                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }

private void btn3_Click(object sender, RoutedEventArgs e)
    {

        WebClient downloader = new WebClient();
        Uri uri = new Uri("http://www.toucheradio.com/RSSFeed/rssMonthly.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel2Downloaded);
        downloader.DownloadStringAsync(uri);
    }

    void Channel2Downloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Result == null || e.Error != null)
        {
            MessageBox.Show("There was an error downloading the XML-file!");
        }
        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,

                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }
    private void itemsList_SelectionChanged(Object sender, SelectionChangedEventArgs e)
    {
        var app = App.Current as App;
        app.selectedItem = (Item)itemsList.SelectedItem;
        this.NavigationService.Navigate(new Uri("/Details.xaml", UriKind.Relative));
    }
namespace tori
{
         public class Item
    {
        public string title { get; set; }
        public string ThumbnailUrl { get; set; }
        public string link { get; set; }
        public string pubDate { get; set; }
    }
} 
namespace tori
{
    public partial class Details : PhoneApplicationPage
    {
        Item item;

    public Details()
    {
        InitializeComponent();


         var app = App.Current as App;
       item = app.selectedItem;
       title.Text = item.title;
       pubDate.Text = item.pubDate;
        ThumbnailUrl.Source = new BitmapImage(new Uri(item.ThumbnailUrl, UriKind.RelativeOrAbsolute));
        string s = item.link;
        string url = s.Replace("archivesplayer", "hostArchivesURLForMobile");
        WebClient downloader = new WebClient();
        Uri uri = new Uri(url,UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel3Downloaded);
        downloader.DownloadStringAsync(uri);
    }

    void Channel3Downloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        var textData = (string)e.Result;
        Regex urlRegex = new Regex("<td height=\"25\" align=\"center\">(?<url>.*)</td>");
        MatchCollection mc = urlRegex.Matches(textData);
        string url = "";
        if (mc.Count > 0)
        {
            url = mc[0].Groups["url"].Value;
             MediaElement1.Source = new Uri(url, UriKind.Absolute);
             MediaElement1.Play();
        }
}
}
}
详细信息。xaml:

 <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
        <Grid Height="617" VerticalAlignment="Top" Margin="-27,96,0,0">

            <Image x:Name="ThumbnailUrl" 

                               Width="279" 
                               Height="421" 
                               VerticalAlignment="Center" 
                               HorizontalAlignment="Center" 
                               Margin="0,-29,204,225" />
            <Image x:Name="Image1" Tap="Image1_Tap"  Margin="46,430,354,92" Source="/Images/pausebutton.png"/>
         <TextBlock x:Name="title" FontSize="30" TextWrapping="Wrap" Margin="284,57,-50,436"  />
                <TextBlock x:Name="pubDate" FontSize="25" Margin="284,186,10,363"  />
            <MediaElement x:Name="MediaElement1" AutoPlay="True"  Margin="0,397,20,0" Height="94" VerticalAlignment="Top" />   

Details.xaml.cs:

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,-951,0">
        <Button Name="btn1" Click="btn1_Click" Content="Daily" HorizontalAlignment="Left" Margin="0,88,0,0" VerticalAlignment="Top" Width="127" Height="72"/>
       <Button Name="btn2" Click="btn2_Click" Content="Weekly" HorizontalAlignment="Left" Margin="132,88,0,0" VerticalAlignment="Top" Height="72" Width="140"/>
      <Button Name="btn3" Click="btn3_Click" Content="CurrentMonth" HorizontalAlignment="Left" Margin="277,88,0,0" VerticalAlignment="Top" Height="72" Width="169"/>
                    <ListBox x:Name="itemsList" Margin="0,225,945,0"  
                SelectionChanged="itemsList_SelectionChanged">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Grid Height="130">
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="100"/>
                            <ColumnDefinition Width="*"/>
                        </Grid.ColumnDefinitions>
                        <Image delay:LowProfileImageLoader.UriSource="{Binding ThumbnailUrl}" 
                               Grid.Column="0" 
                               Width="500" 
                               Height="125" 
                               VerticalAlignment="Center" 
                               HorizontalAlignment="Center" 
                               Margin="6"/>
                        <StackPanel Margin="10,20,0,0"
                                    Grid.Column="1"
                                    Height="60"
                                    Orientation="Horizontal" 
                                    VerticalAlignment="Center">
                            <TextBlock Text="{Binding title}" 
                                       FontSize="40" />

                        </StackPanel>
                    </Grid>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
       </Grid>
namespace tori
{
    public partial class Archieves : PhoneApplicationPage
    {
        public Archieves()
       {
            InitializeComponent();
       }

    private void btn1_Click(object sender, RoutedEventArgs e)
    {
        WebClient downloader = new WebClient();
        Uri uri = new Uri(" http://www.toucheradio.com/RSSFeed/rssDaily.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(ChannelDownloaded);
        downloader.DownloadStringAsync(uri);
    }

    void ChannelDownloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Result == null || e.Error != null)
        {
            MessageBox.Show("There was an error downloading the XML-file!");
        }


        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,
                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }

private void btn2_Click(object sender, RoutedEventArgs e)
    {
        WebClient downloader = new WebClient();
        Uri uri = new Uri(" http://www.toucheradio.com/RSSFeed/rssWeekly.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel1Downloaded);
        downloader.DownloadStringAsync(uri);
    }

       void Channel1Downloaded(object sender, DownloadStringCompletedEventArgs e)
       {
           if (e.Result == null || e.Error != null)
           {
               MessageBox.Show("There was an error downloading the XML-file!");
           }
        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,
                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }

private void btn3_Click(object sender, RoutedEventArgs e)
    {

        WebClient downloader = new WebClient();
        Uri uri = new Uri("http://www.toucheradio.com/RSSFeed/rssMonthly.php ", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel2Downloaded);
        downloader.DownloadStringAsync(uri);
    }

    void Channel2Downloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Result == null || e.Error != null)
        {
            MessageBox.Show("There was an error downloading the XML-file!");
        }
        else
        {
            // Deserialize if download succeeds

            XDocument document = XDocument.Parse(e.Result);

            var queue = from item in document.Descendants("item")
                        select new Item
                        {
                            title = item.Element("title").Value
                            ,
                            link = item.Element("link").Value
                            ,
                            pubDate = item.Element("pubDate").Value
                            ,

                            ThumbnailUrl = item.Element(item.GetNamespaceOfPrefix("media") + "thumbnail").Attribute("url").Value
                            ,

                        };

            itemsList.ItemsSource = queue;
        }
    }
    private void itemsList_SelectionChanged(Object sender, SelectionChangedEventArgs e)
    {
        var app = App.Current as App;
        app.selectedItem = (Item)itemsList.SelectedItem;
        this.NavigationService.Navigate(new Uri("/Details.xaml", UriKind.Relative));
    }
namespace tori
{
         public class Item
    {
        public string title { get; set; }
        public string ThumbnailUrl { get; set; }
        public string link { get; set; }
        public string pubDate { get; set; }
    }
} 
namespace tori
{
    public partial class Details : PhoneApplicationPage
    {
        Item item;

    public Details()
    {
        InitializeComponent();


         var app = App.Current as App;
       item = app.selectedItem;
       title.Text = item.title;
       pubDate.Text = item.pubDate;
        ThumbnailUrl.Source = new BitmapImage(new Uri(item.ThumbnailUrl, UriKind.RelativeOrAbsolute));
        string s = item.link;
        string url = s.Replace("archivesplayer", "hostArchivesURLForMobile");
        WebClient downloader = new WebClient();
        Uri uri = new Uri(url,UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Channel3Downloaded);
        downloader.DownloadStringAsync(uri);
    }

    void Channel3Downloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        var textData = (string)e.Result;
        Regex urlRegex = new Regex("<td height=\"25\" align=\"center\">(?<url>.*)</td>");
        MatchCollection mc = urlRegex.Matches(textData);
        string url = "";
        if (mc.Count > 0)
        {
            url = mc[0].Groups["url"].Value;
             MediaElement1.Source = new Uri(url, UriKind.Absolute);
             MediaElement1.Play();
        }
}
}
}
namespace-tori
{
公共部分类详细信息:PhoneApplicationPage
{
项目;
公开资料()
{
初始化组件();
var app=应用程序。当前为应用程序;
item=app.selectedItem;
title.Text=item.title;
pubDate.Text=item.pubDate;
ThumbnailUrl.Source=新的位图图像(新的Uri(item.ThumbnailUrl,UriKind.RelativeOrAbsolute));
字符串s=item.link;
字符串url=s.Replace(“archivesplayer”、“hostArchivesURLForMobile”);
WebClient downloader=新的WebClient();
Uri=新的Uri(url,UriKind.Absolute);
downloader.DownloadStringCompleted+=新的DownloadStringCompletedEventHandler(channel3download);
DownloadStringAsync(uri);
}
void channel3下载(对象发送方,下载StringCompletedEventArgs e)
{
var textData=(字符串)e.Result;
正则表达式urlRegex=新正则表达式((?*);
MatchCollection mc=urlRegex.Matches(textData);
字符串url=“”;
如果(mc.Count>0)
{
url=mc[0]。组[“url”]。值;
MediaElement1.Source=新Uri(url,UriKind.Absolute);
MediaElement1.Play();
}
}
}
}
执行“选择项目”操作后,如果单击某个按钮,则此行出现错误

title.Text=item.title

有人能告诉我如何克服这个空异常吗?当我点击一个按钮选择时,改变的事件是引发而不是点击事件。我不知道这是什么原因

请任何人帮我做这个


非常感谢。

当您更改
项目资源时,将引发
选择已更改
事件。我认为,无论何时更改
项资源
,选择都会被重置(即-设置为null(未选择))。应该是这样的,否则不在
ItemsSource
中的项目可能是
SelectedItem
,这是错误的

现在,要解决您的问题,只需检查
SelectedItem!=
itemsList\u SelectionChanged
方法中的null


代码的其他方面:方法
btn1\u Click
btn2\u Click
btn3\u Click
似乎只有细微的区别,因此您可以将大部分代码放在一个方法中,只需传递url即可。这对于
方法更为重要(因为它们要长得多)。基本上,您希望尽可能多地重用代码。这使得代码更易于阅读(可以说,它不是10页,而是一页),并且更易于维护(如果出现错误,您只需要在一个地方修复它).

我已将selection changed event更改为tap event,这解决了我的问题。我也尝试用方法编写代码并重新使用。但我对传递url有点困惑。请告诉我单击按钮时传递url的情况。谢谢。