无法从 MediaElement 类继承
我正在尝试创建一个自定义 MediaElement ,我需要的第一件事就是从 MediaElement 继承它。
但是当我尝试像下面这样继承时,这根本就不会发生:
CustomMediaControl : MediaElement
{
}
I am trying to create a custom MediaElement , and the 1st thing I need is to inherit it from the MediaElement .
But this is simply not happneing when I try to inherit like following:
CustomMediaControl : MediaElement
{
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MediaElement
被声明为一个sealed
类——无法继承。文档位于:http:// /msdn.microsoft.com/en-us/library/system.windows.controls.mediaelement(VS.95).aspx
MediaElement
is declared asealed
class -- cannot be inherited.Documentation is here: http://msdn.microsoft.com/en-us/library/system.windows.controls.mediaelement(VS.95).aspx
根据您想要实现的目标,这可能不合适,但如果您使用的是 Silverlight,请查看 Silverlight 媒体框架 http://smf.codeplex.com/。
它具有一整套功能,并且有自己的媒体元素,您可以将其用作基础。
祝你好运,
奥拉
Depending on what you're trying to achieve this might not be suitable, but if you're using Silverlight have a look at the Silverlight Media Framework http://smf.codeplex.com/.
It comes with a whole heap of features and it has it's own mediaelement, which you might be able to use as your base.
Good luck,
Ola