Eleve 0.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Eleve --version 0.1.0
NuGet\Install-Package Eleve -Version 0.1.0
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="Eleve" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Eleve --version 0.1.0
#r "nuget: Eleve, 0.1.0"
#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 Eleve as a Cake Addin
#addin nuget:?package=Eleve&version=0.1.0

// Install Eleve as a Cake Tool
#tool nuget:?package=Eleve&version=0.1.0

Eleve

Livet Based OreOre Framework

(参考にして自分でアプリケーションが作りやすそうなフレームワークを作ってみましたの意)

Description

MVVM is so great. But so difficult and complex to build application.
Eleve is WPF Framwork not fussy about MVVM.

Livet

Livet is a very powerful MVVM Infrastructure for WPF

Files

EleveSample
├── Actions
│   ├── EleveSample
│   │   ├── EleveSampleActionBase.cs
│   │   ├── Initialize.cs
│   │   └── OpenItemSelector.cs
│   └── ItemSelector
│       ├── Initialize.cs
│       ├── ItemSelectorActionBase.cs
│       └── Notify.cs
├── Models
│   └── Person.cs
├── ViewModels
│   ├── EleveSampleViewModel.cs
│   └── ItemSelectorViewModel.cs
└── Views
    ├── EleveSampleView.xaml
    ├── EleveSampleView.xaml.cs
    ├── ItemSelectorView.xaml
    └── ItemSelectorView.xaml.cs

Call Action

<Button Content="Open">
  <i:Interaction.Triggers>
    <i:EventTrigger EventName="Click">
      <ev:Execute Action="OpenItemSelector" />
    </i:EventTrigger>
  </i:Interaction.Triggers>
</Button>

Open Window

Open ItemSelectorView with param and callback.

OpenDialogWindow<ItemSelectorView>(param, (type, ret) => {
  ViewModel.Message = type.ToString() + " - " + ret;
});
 

Close ItemSlectorView and notify param.

CloseWindow(WindowCloseType.OK, ViewModel.ID);

License

zlib/libpngライセンスで提供しています。zlib/libpng ライセンスでは、ライブラリとしての利用に留めるのであれば再配布時にも著作権表示などの義務はありません。しかし、ソースコードを改変しての再配布にはその旨の明示が義務付けられます。

Eleve include Livet's code.

TODO

  • Broken English
  • Is License ok?
  • Input Validation
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
0.4.0 635 5/15/2019
0.3.1 558 5/1/2019
0.3.0 567 4/29/2019
0.2.0 580 4/27/2019
0.1.4 581 4/13/2019
0.1.3 556 3/30/2019
0.1.2 566 3/24/2019
0.1.0 544 3/23/2019

beta version