rdp - WPF MediaElement on Remote Desktop -
rdp - WPF MediaElement on Remote Desktop -
i have simple wpf application has media element:
<mediaelement name="themedia" stretch="fill" loadedbehavior="play"/>
i initialize source in code behind:
public mainwindow() { initializecomponent(); string file = string.format(@"{0}\{1}", environment.currentdirectory, "movie.mp4"); uri uri = new uri(file); themedia.source = uri; }
when run on computer works when run on remote desktop 1 of 2 things dependent on rd sesion host configuration -> rdp-tcp -> properties -> client settings -> sound , video playback: if checked, see video no sound if not checked, hear video no display
any ideas?
wpf rdp
Comments
Post a Comment