AcManager.Controls.Dialogs.VideoViewer.VideoViewer C# (CSharp) Method

VideoViewer() public method

public VideoViewer ( string filename, string title = null ) : System
filename string
title string
return System
        public VideoViewer(string filename, string title = null) {
            DataContext = this;
            Filename = filename;
            Title = title ?? Path.GetFileName(filename);
            InitializeComponent();
            Buttons = new Button[] { };
        }