我需要幫助將自定義屬性添加到UserControl。我創建了一個視頻播放器用戶控件,我想在另一個應用程序中實現它。我的UserControl中有一個mediaElement控件,我想從我的UserControl的應用程序訪問mediaElement.Source。將自定義屬性添加到UserControl
我嘗試這樣做:我好像[Player.xaml.cs]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace VideoPlayer
{
public partial class Player : UserControl
{
public static readonly DependencyProperty VideoPlayerSourceProperty =
DependencyProperty.Register("VideoPlayerSource", typeof(System.Uri), typeof(Player), null);
public System.Uri VideoPlayerSource
{
get { return mediaElement.Source; }
set { mediaElement.Source = value; }
}
public Player()
{
InitializeComponent();
}
無法找到在屬性框中屬性。有關於此的任何幫助?
你可以添加一些更多的代碼?就像這個屬性所在的類聲明一樣? – juanreyesv
如果將屬性更改爲字符串,那麼它會顯示出來嗎? –
我編輯的問題。現在檢查代碼 – JohnTurner