无法从 MediaElement 类继承

发布于 2024-08-30 09:15:19 字数 161 浏览 3 评论 0原文

我正在尝试创建一个自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

穿透光 2024-09-06 09:15:19

MediaElement 被声明为一个sealed 类——无法继承。

文档位于:http:// /msdn.microsoft.com/en-us/library/system.windows.controls.mediaelement(VS.95).aspx

MediaElement is declared a sealed class -- cannot be inherited.

Documentation is here: http://msdn.microsoft.com/en-us/library/system.windows.controls.mediaelement(VS.95).aspx

勿忘心安 2024-09-06 09:15:19

根据您想要实现的目标,这可能不合适,但如果您使用的是 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文