I am making application based on Windows Media Player in Visual Studio C#, I need media time in milliseconds, the media player I am trying to copy is:

But in Visual Studio C#, the default Media Player Version 1.0 is available, which has the old look, and media time is in seconds only:

How can I achieve Media Player as shown in first image, which has a better look and media time in milliseconds?
I have tried options in Windows Media Player & search in web but all shows default media player.
Updated 2:
Directly create a WindowsFormsControlLibrary (.Net Framework 4.8)
Use a label to directly cover the original time, and set the anchor of the label to right, bottom.
Use a timer control, which is enabled by default, and the interval is 100 milliseconds.
Use a button control to open the file to be played, and set the anchor to left and bottom.
Set the media dock property to fill. Right click on it and click send to back so it doesn't block other controls.
The anchor is set to prevent the control from being misaligned when it is stretched.
Just import it into the winform program as a dll and use it.
Updated:
Use the ElementHost control to place a WPF UIElement on your Windows Forms control or form.
I used
mediaelement.Position.TotalMillisecondsto get the milliseconds of the video, then format it to look like you want. I used the timer control to refresh the text value of the textbox.Although it is possible to use wpf controls in winforms, I still hope you create WPF programs directly.
You can create your own Windows Media Player, but I don't know if you are using a winforms program or a Wpf program.
This is an official example from Microsoft, it uses WPF show.
You can obtain the video time and modify it according to your needs.
Here's an example of how I get the time and format it: