• Windows Phone 7 问题总结


    1、 为什么textblock在进行数据绑定时,设置它的AllowDrop="True"属性 会发生异常?

    2、再为listbox进行数据绑定时,手机方向为竖向时内容能完全显示,但是当手机横向显示时内容无法完全显示?
    解决办法是:把listbox的height属性删掉即可。


    3、 MediaLibrary类可以获取媒体库中的图片和音乐。
    MediaLibrary library = new MediaLibrary();

    4、 关于MediaPlayer.Play();方法的问题 :
    public partial class ExamplePanoramaPage1 : PhoneApplicationPage
    {
    static MediaLibrary lib = new MediaLibrary();
    SongCollection sc = lib.Songs;
    public ExamplePanoramaPage1()
    {
    InitializeComponent();
    }
    private void LayoutRoot_Loaded(object sender, RoutedEventArgs e)
    {
    ObservableCollection<MusicModel> lst = new ObservableCollection<MusicModel>();
    for (int i = 0; i < sc.Count; i++)
    {
    lst.Add(new MusicModel()
    {
    MusicName = sc[i].Name,
    Auther = sc[i].Artist.Name,
    MusicPath = sc[i].TrackNumber
    });
    }
    this.lstLirics.ItemsSource = lst;
    }
    private void lstLirics_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
    MediaPlayer.Pause();
    FrameworkDispatcher.Update(); //为什么不调用此方法时会报错?
    MediaPlayer.Play(sc, lstLirics.SelectedIndex);
    }
    }

    5、 SoundEffect 类播放声音:
    string path = "sound/knock.wav";//生产操作为“内容”
    var soundStream= Application.GetResourceStream(new Uri(path, UriKind.RelativeOrAbsolute));
    SoundEffect se = SoundEffect.FromStream(soundStream.Stream);
    FrameworkDispatcher.Update();//为什么非要添加这一句?不明白。
    se.Play();

    6、 隐藏顶端的系统托盘,必须使用this.SetValue()方法设置,不能直接对他IsVisibleProperty赋值
    this.SetValue(Microsoft.Phone.Shell.SystemTray.IsVisibleProperty, false);//!(bool)this.GetValue(Microsoft.Phone.Shell.SystemTray.IsVisibleProperty)

  • 相关阅读:
    P4559 [JSOI2018]列队
    2019.2.14 考试T3 交互题
    2019.2.14 考试T1 FFT
    P3240 [HNOI2015]实验比较 树形DP
    bzoj 3514: Codechef MARCH14 GERALD07加强版 LCT+主席树
    P4172 [WC2006]水管局长 LCT维护最小生成树
    P4177 [CEOI2008]order 最小割
    CF1073G Yet Another LCP Problem SA+权值线段树
    CF1110D Jongmah
    2019.2.10考试T2, 多项式求exp+生成函数
  • 原文地址:https://www.cnblogs.com/qiuyueguangxuan/p/3991494.html
Copyright © 2020-2023  润新知