C#Library制作媒体中心类型应用程序?

时间:2010-02-09 05:01:04

标签: c# user-interface

我想使用类似于Windows Media Center或Boxee的GUI制作应用程序,但我不知道从哪里开始。

非常感谢一些2D GUI库或指向如何制作此类应用程序的教程的链接。

1 个答案:

答案 0 :(得分:2)

我建议使用.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>