用于制作媒体中心类型应用程序的C#库?
我想使用类似于Windows Media Center或Boxee的GUI来制作应用程序,但我不知道从哪里开始。用于制作媒体中心类型应用程序的C#库?
一些2D GUI库或指导如何制作此类应用程序的链接将不胜感激。
回答:
我会建议.NET的两个内置的GUI库:Windows Forms或更新,更漂亮Windows Presentation Foundation?如果你正在寻找可播放视频文件的东西,VLC's plugin很好。或者您可以使用Windows Media Player控件。
<Window x:Class="FullscreenWpf.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525"
WindowStyle="None"
WindowState="Maximized"
Topmost="True"
Cursor="None">
<Grid>
<Label>Hello?</Label>
</Grid>
</Window>
以上是 用于制作媒体中心类型应用程序的C#库? 的全部内容, 来源链接: utcz.com/qa/265325.html