开发者

C# Library to Make a Media Center Type Application?

开发者 https://www.devze.com 2022-12-19 19:43 出处:网络
I want to make an application with a GUI similar to Windows Media Center or Boxee but I don\'t know where to start.

I want to make an application with a GUI similar to Windows Media Center or Boxee but I don't know where to start.

Some 2D GUI libraries or links to tutorials on how开发者_Go百科 to make such an application would be greatly appreciated.


I would suggest .NET's two built-in GUI libraries: Windows Forms or the newer, prettier Windows Presentation Foundation? If you're looking for something that can play video files, VLC's plugin is nice. Or you can use the Windows Media Player control.

<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>
0

精彩评论

暂无评论...
验证码 换一张
取 消