since the control is just a ContentView
it can be customized in many ways - this is an example of a Clip
applied to the color picker.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery('[name="tc_input_field_form_element[field_name][]"],[name="tc_select_field_form_element[field_name][]"]') | |
.map((i, x) => `${x.value} ${jQuery(x).nextAll('[name="tc_input_field_form_element[field_label][]"],[name="tc_select_field_form_element[field_label][]"]').get(0).value}`) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.ComponentModel; | |
using System.Diagnostics; | |
using MAUI = Microsoft.Maui.Controls.Shapes; | |
namespace TelemetryExporter.UI.CustomControls; | |
// It will be good that range slider to be Generic and initialize it from code behind. | |
// For example RangeSlider<T> where T : Struct (or something comparable) | |
public class RangeSlider : ContentView, INotifyPropertyChanged |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Sample; | |
var d1 = new DateTime(2024, 05, 11, 08, 31, 49); // End of Clip_00002 | |
var d2 = new DateTime(2024, 05, 11, 13, 09, 20); // Start of Clip_00003 | |
var res = d2 - d1; | |
Console.WriteLine("Diff {0}", res); | |
var timeLine = new DateTime(2024, 01, 1, 0, 1, 16) + res; // Last clip timeline end | |
Console.WriteLine("Put next video at {0:HH:mm:ss:ff}", timeLine); /// ?? Less than 4:33 |
OlderNewer