MaterialDesignInXAML / MaterialDesignInXAML/MaterialDesignInXamlToolkit
Add NumericUpDown for `long` and `double`
まだ誰も着手していません。
- 主要言語
- C#
- スター
- 16.3k
- フォーク
- 3.5k
- 平均マージ
- 1日 22時間
- マージ済み PR(30日)
- 8
説明
Is your feature request related to a problem? Please describe.
The current numeric controls only support Int32 and Decimal. This can be limiting when working with values that exceed the Int32 range or when floating-point semantics are more appropriate than Decimal.
Describe the solution you'd like
Add dedicated Int64 (long) and Double (double) UpDown controls, complementing the existing controls:
| Already supported | Control | C# Type | Typical Use Cases |
|---|---|---|---|
| ✅ | NumericUpDown |
int |
Counts, quantities, indexes, IDs |
| ❌ | LongUpDown |
long |
Large IDs, file sizes, timestamps, large counters |
| ✅ | DecimalUpDown |
decimal |
Money, prices, tax rates, financial calculations |
| ❌ | DoubleUpDown |
double |
Scientific measurements, engineering values, coordinates, floating-point calculations |
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、既存の NumericUpDown および DecimalUpDown コントロールを調査し、現在の数値コントロールがどのように構成され、テストされているかを理解します。Int64 (long) と Double (double) 専用のコントロールを追加し、Issue に記載されているユースケースを両方がサポートし、既存のコントロールを補完することを確認します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- csharp
- 領域
- desktop
- issue の種類
- 機能追加
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 活発
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 52/100