Difference between revisions of "Version 3.8 (WinX)"
| Line 1: | Line 1: | ||
| + | = Release Notes = | ||
| + | |||
== Version 3.8.B (2021-0?-??) == | == Version 3.8.B (2021-0?-??) == | ||
=== Feature highlight === | === Feature highlight === | ||
| Line 24: | Line 26: | ||
<br /> | <br /> | ||
| + | = XAML Notes = | ||
| + | |||
| + | == UBIKMediaPlayerElement == | ||
| + | This control is introduced to replace the old MediaElement we used for playing video/audio files. Because the old one had an issue that newly created document files can not be played until they are saved. | ||
| + | If this issue is relevant, you should update those XAML files that use MediaElement. See below. | ||
| + | |||
| + | <tabs> | ||
| + | <tab name="New"> | ||
| + | <source lang = "xml"> | ||
| + | <Grid xmlns:controls="using:UBIK.WinX.Controls"> | ||
| + | <controls:UBIKMediaPlayerElement | ||
| + | ... | ||
| + | SourceExt="{Binding DocumentViewModel.LocalURI}" /> | ||
| + | </Grid> | ||
| + | </source> | ||
| + | </tab> | ||
| + | <tab name="Old"> | ||
| + | <source lang = "xml"> | ||
| + | <Grid> | ||
| + | <MediaElement | ||
| + | ... | ||
| + | Source="{Binding DocumentViewModel.LocalURI}" /> | ||
| + | </Grid> | ||
| + | </source> | ||
| + | </tab> | ||
| + | </tabs> | ||
| + | |||
| + | If this issue is irrelevant or does not bother your users, you can skip updating the XAMLs since the old MediaElement still works for the most part. | ||
| + | |||
| + | <headertabs /> | ||
{{Category/Version2|{{PAGENAME}}}} | {{Category/Version2|{{PAGENAME}}}} | ||
