Dove.Avalonia.Controls.Extensions.ChineseInputSupoort 2.0.0-preview4

This is a prerelease version of Dove.Avalonia.Controls.Extensions.ChineseInputSupoort.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Dove.Avalonia.Controls.Extensions.ChineseInputSupoort --version 2.0.0-preview4
NuGet\Install-Package Dove.Avalonia.Controls.Extensions.ChineseInputSupoort -Version 2.0.0-preview4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dove.Avalonia.Controls.Extensions.ChineseInputSupoort" Version="2.0.0-preview4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dove.Avalonia.Controls.Extensions.ChineseInputSupoort --version 2.0.0-preview4
#r "nuget: Dove.Avalonia.Controls.Extensions.ChineseInputSupoort, 2.0.0-preview4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dove.Avalonia.Controls.Extensions.ChineseInputSupoort as a Cake Addin
#addin nuget:?package=Dove.Avalonia.Controls.Extensions.ChineseInputSupoort&version=2.0.0-preview4&prerelease

// Install Dove.Avalonia.Controls.Extensions.ChineseInputSupoort as a Cake Tool
#tool nuget:?package=Dove.Avalonia.Controls.Extensions.ChineseInputSupoort&version=2.0.0-preview4&prerelease

Controls Extensions for Avalonia

WARNING

<strong>IN Avalonia 0.10.14,the NativeControlHost NEED app.manifest for Windows.IF NOT,THAT'S MAKE THE PlayerView CANNOT WORKS NORMALLY!</strong>

<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
  <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
    <security>
      <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
        <requestedExecutionLevel level="asInvoker" uiAccess="false" />
      </requestedPrivileges>
    </security>
  </trustInfo>
  <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
    <application>
      
      
      
      
      
      
      
      
    </application>
  </compatibility>
</assembly>

GUIDES

About media extension

About control extension

About danmaku control extension

About chinese support extension

DEMO screenshot

图片alt

INPORTANT

To enable extension the UseDoveExtensions method call should be present in your Program.cs file:

public static AppBuilder BuildAvaloniaApp()
    => AppBuilder.Configure<App>()
        .UsePlatformDetect()
        .UseDoveExtensions()
        .LogToTrace();

ABOUT FOLDER

Base

Basic, public library

Controls

Control extension implementation

Utils

Extension Method Library


TODO LIST

CONTROLS

  • ProgressRing

    inherit from Canvas,Implement loading animation

  • ClickableView

    Views that can trigger the click event

  • GridView

    a Multiple-Column ListView/ListBox,Just like GridView in UWP

  • GridViewItem

    Item for GridViewItem,inherit from ListViewItem,with Left/Right Click Event

  • CircleImage

    inherit from Ellipse,Round picture.Just like PersonPicture in UWP

  • ExpandableView

    A view that shows items in a vertically scrolling two-level list PrimaryView

    Main Item,show/hide the SecondView after selection SecondView show or hide when select PrimaryView

  • ImageBox

    inherit from Image,loading image from http/https/local

  • ListView

    inherit from ListBox,just like the ListView in UWP

  • ListViewItem

    Item for ListView,inherit from ListBoxItem

  • MessageBox

    Show message window

  • NotifyWindow

    Notify message window,the transition animation can be displayed according to the preset and automatically closed after a certain period of time

  • PopupMenu

    inherit from Window,close after selecting item and trigger the event

  • HorizontalItemsRepeater

    inherit from ItemsRepeater,Horizontal layout with Clickable Item

  • VerticalItemsRepeater

    inherit from ItemsRepeater,Vertical layout with Clickable Item

  • ItemsRepeaterContent

    Item for ItemsRepeater with Clickable Event

  • ScrollView

    inherit from ScrollViewer,extend sliding to the bottom, sliding to the top event

  • SeekSlider

    inherit from Slider,extend value change event

  • PopupToast

    inherit from Window,show message dialog and automatically shut down after a certain period of time

    diff with PopupDialog, it's popuping in workarea who popuping in control/panel

  • TextLabel

    Run binding just LIKE WPF/UWP in TextBlock,with LineBreak can wrap the text

  • HyperlinkButton

    the button style LIKE HyperlinkButton in UWP

  • AeroWindow

    the window LIKE "Windows Aero" OR "Aero Grass"

  • ImageContentButton

    the button show Image and Text

  • CheckBoxList

    a grouping checkbox control

  • RadioButtonList

    a grouping radiobutton control

  • Text

    the Shapes control for text content,it is a child when you are using canvas

  • TipLabel

    the TextBlock with border control

  • TextView

    the control like TextPresenter,but it's draw by the textLayout,so supoort custom font in your project

  • EditTextView

    the control like TexBox,but it's draw by the textLayout,so supoort custom font in your project

  • PathIcon

    the same control in uwp

  • ImageIcon

    the icon control load from image,just like PathIcon and SymbolIcon

  • SymbolIcon

    the same control in uwp(but the Glyph Only valid in XAML)

EXTEND

  • ActualWidth

    get visable control actual width

  • ActualHeight

    get visable control actual height

  • GetPrivateField

    get control/namescope private field

  • SetPrivateField

    set value for control private field

  • GetPrivateProperty

    get control private property

  • SetPrivateProperty

    set value for control private property

  • MeasureString

    get string text display width

  • AreClose

    between value is too close or not

  • InvokePrivateMethod

    call control private method

  • FindControls

    find child control by control type

  • GetWindow

    get window who own this control

  • Shutdown / TryShutdown

    shutdown application

DANMAKU

WARNING

<strong>Need to reference Dove.Avalonia.Controls.Extensions.Danmaku package</strong>

CONTROLS

  • DanmakuView

    use libwtfdanmaku libs draw danmaku,only work's on Windows

  • DanmakuNativeView

    use Avalonia Animation draw danmaku,for all platforms

MEDIA

WARNING

<strong>Need to reference Dove.Avalonia.Extensions.Media package</strong>

<strong>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</strong>

<strong>NOW the Version >= 1.2.0,it's able to use ffmpeg playing video!!!!</strong>

<strong>Ah ! You can reference the ffmpeg libraries packages from Windows or Linux or MacOS</strong>

<strong>OH ! You can reference the bass libraries packages from Windows or Linux or MacOS</strong>

<strong>and the ManagedBass require the libraries is in your program root folder,the [Dove.Avalonia.Extensions.Media] has handle copy to the require path.but if you still get an init failed messsage,plz copy by yourself!!</strong>

<strong>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</strong>

<strong>if you need VideoView or PlayerView,you should install libVLC in your project before init!!! Windows or MAC</strong>

<strong>if you need AudioControl,should download bass Libraries(.dll/.so/.dylib/.a) are separate for x86, x64, ARM by yourself. you can find out from here</strong>

To enable extension the UseAudioControl AND UseVideoView method call should be present in your Program.cs file,the 1st one is for AudioControl, the 2nd one is for VideoView or PlayerView,you can also call it according to your NEEDS:

public static AppBuilder BuildAvaloniaApp()
    => AppBuilder.Configure<App>()
        .UsePlatformDetect()
        .UseVideoView()
        .UseAudioControl()
        .LogToTrace();
  • VideoView Support

    the VideoView in LibVLCSharp,modified to support use in UserControl

  • PlayerView Support

    the custom control for VideoView,it's just like in uwp/wpf

  • AudioControl Support

    the control playing audio without visual or occupy bounds

LANGUAGE

To enable extension the UseChineseInputSupport method call should be present in your Program.cs file,you defined which controls(default is TextBox and TextPresenter):

public static AppBuilder BuildAvaloniaApp()
    => AppBuilder.Configure<App>()
        .UsePlatformDetect()
        .UseChineseInputSupport()
        .LogToTrace();

If you need to use a global font in the App, you need to inherit ApplicationBase in the App.xaml.cs class

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 242 7/16/2023
2.0.0-preview6 130 4/13/2023
2.0.0-preview5 123 4/11/2023
2.0.0-preview4 135 3/10/2023
2.0.0-preview3 143 11/6/2022
2.0.0-preview1 157 9/17/2022
1.3.1 247 4/13/2023
1.3.0 385 11/14/2022
1.2.2 333 11/13/2022
1.2.1 465 8/20/2022
1.2.0 492 7/8/2022
1.1.9 488 6/15/2022
1.1.8 520 5/12/2022
1.1.7 505 5/5/2022
1.1.6 578 3/4/2022
1.1.5 552 2/28/2022
1.1.4 425 2/16/2022
1.1.3 431 2/14/2022
1.1.2 430 1/27/2022
1.1.1 266 12/25/2021
1.1.0 285 12/8/2021
1.0.6 418 11/7/2021
1.0.5 355 8/19/2021
1.0.4 404 8/19/2021
1.0.3 318 8/13/2021
1.0.2 410 7/28/2021
1.0.1 358 7/27/2021
1.0.0 349 7/7/2021