Update Files
This commit is contained in:
24
Kha/Backends/WPF/system/windows/controls/MediaElement.hx
Normal file
24
Kha/Backends/WPF/system/windows/controls/MediaElement.hx
Normal file
@ -0,0 +1,24 @@
|
||||
package system.windows.controls;
|
||||
|
||||
import system.Uri;
|
||||
|
||||
@:native("System.Windows.Controls.MediaElement")
|
||||
extern class MediaElement {
|
||||
public var Volume: Float;
|
||||
public var Source: Uri;
|
||||
public var LoadedBehavior: MediaState;
|
||||
public var UnloadedBehavior: MediaState;
|
||||
|
||||
public var MediaOpened: Dynamic;
|
||||
|
||||
public function new(): Void {}
|
||||
|
||||
public function Play(): Void {}
|
||||
|
||||
public function Pause(): Void {}
|
||||
|
||||
public function Stop(): Void {}
|
||||
}
|
||||
|
||||
@:native("System.Windows.RoutedEventArgs")
|
||||
extern class RoutedEventArgs {}
|
Reference in New Issue
Block a user