Windows Phone 7 問題總結

來源:互聯網
上載者:User

標籤:style   io   os   使用   ar   for   資料   sp   art   

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)

 

Windows Phone 7 問題總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.