-
## 概要
特定のスキーマの`ReactiveProperty`版を作成する
・public なsetterがあるテーブル系要素
・キャラクターステータス全般
・Archivement系の型
辺りが対象になる
-
ReactiveProperty.SkipLatestValueOnSubscribe().ToUniTask() returns an unexpected value and timing.
```csharp
var rp = new ReactiveProperty(1);
Observable.Timer(TimeSpan.FromSeconds(0.5)).Subscribe…
-
## 概要
#180 以降
コードベースなStateMachineを構築する
-
Example:
```
void Start()
{
A = new ReactiveProperty(1);
B = new ReactiveProperty(2);
Debug.Log(A.Value);
Debug.Log(B.Value);
A.WithLatestFrom(B, (a, b) => (a, b))
…
-
いつもお世話になってます。
以下の現象がありましたので、報告させてください。
■現象
AsyncReactiveCommand の CanExecuteを別スレッドから変更すると、「'このオブジェクトは別のスレッドに所有されているため、呼び出しスレッドはこのオブジェクトにアクセスできません。」の例外が発生しました。
■詳細
・Textプロパティを用意する。
・Textプ…
-
Colleagues, hello.
Help is needed. I want to set and localize a collection with initial values, and then use the add new value command. I got the following code.
```
public ReactiveCollection Pr…
-
こんにちは。お世話になっております。
質問があります。
現在私のリポジトリ [boiler's Graphics](https://github.com/dhq-boiler/boiler-s-Graphics) でラスター画像をベクター画像に変換する試みに取り組んでいます。
主要な処理は [OpenCvSharp](https://github.com/shimat/ope…
-
Hello I have this problem and I can't find any solution on this from google so I end up here again in the GH repo.
I have this XAML code
```
```
I am binding this to my ViewM…
-
**Describe the bug**
Not a bug, just a technical question. First I'm not an expert in WPF and this is my first project using Avalonia. I'm trying to build a desktop app (windows only for now) using A…
-
いつも大変、お世話になっています。
BusyNotifier で Await できないのですが、これは仕様でしょうか?
ユースケースとしては、結構、使いたい場合があるので、対応してもらえるとありがたいです。
例えば、実行ボタンとキャンセルボタンの2つ用意して、キャンセルボタン押下時は、キャンセル完了を待ちたい場合があります。
現状、BusyNotifier ではawaitができない…