This file contains 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; | |
using System.Diagnostics; | |
using System.Text; | |
using Microsoft.Extensions.Primitives; | |
using Microsoft.Maui.ApplicationModel; | |
using OpenCvSharp; | |
using SkiaSharp; | |
using static System.Net.Mime.MediaTypeNames; | |
namespace MyApp |
This file contains 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; | |
using System.Diagnostics; | |
using OpenCvSharp; | |
namespace MyApp | |
{ | |
public static class VideoFrameDecoderHelper | |
{ | |
/// <summary> | |
/// Performs a pointer arithmetic based decoding operation from the <paramref name="frame"/> into the frame buffer. |
This file contains 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
/* | |
# Released under MIT License | |
Copyright (c) 2017 insaneyilin. | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and | |
associated documentation files (the "Software"), to deal in the Software without restriction, | |
including without limitation the rights to use, copy, modify, merge, publish, distribute, | |
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
This file contains 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; | |
using System.Collections.Generic; | |
using System.Windows.Input; | |
using Xamarin.Essentials; | |
using Xamarin.Forms; | |
namespace MyApp.Controls | |
{ | |
public class NullableDateChangedEventArgs : EventArgs | |
{ |
This file contains 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; | |
using System.Windows.Input; | |
using Xamarin.Forms; | |
namespace MyApp.Controls | |
{ | |
public class NullableTimeChangedEventArgs : EventArgs | |
{ | |
public NullableTimeChangedEventArgs(TimeSpan? newValue, TimeSpan? oldValue) | |
{ |
This file contains 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; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Reflection; | |
using System.Threading; | |
using UIKit; | |
public class ResizableViewCell : ViewCell | |
{ |
This file contains 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; | |
namespace MyApp.Attributes | |
{ | |
/// <summary> | |
/// Apply the design time binding context attribute to your code-behind class to inform tools of your intended runtime binding context. | |
/// </summary> | |
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] | |
public class DesignTimeBindingContextAttribute : Attribute | |
{ |
This file contains 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; | |
using System.Globalization; | |
using System.Reflection; | |
using System.Resources; | |
using Xamarin.Forms.Xaml; | |
using Xamarin.Forms; | |
namespace MyApp.il8n | |
{ | |
// You exclude the 'Extension' suffix when using in Xaml markup |
NewerOlder