c# - How to display vlc video from small screen to another vlc big screen "vlcplugin21" -


i'm trying display video in big screen when click on button "view video" after loaded windows in small screen via vlc player "vlcplugin21" in windows form application

the following code load video windows , display via vlc player:

    public void readvlc1()     {         ofd.filter = "all files (*.*) | *.*";         if (ofd.showdialog() == dialogresult.ok)         {             vlc1.playlist.items.clear();             vlc1.playlist.add("file:///" + ofd.filename,ofd.safefilename, null);                           txt_videoname.text = ofd.safefilename;          }     } 

i want click on button example "view video in full screen" , display same video big vlc screen.

any help??


Comments

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -