mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-06-30 22:29:29 +03:00
15 lines
243 B
C#
15 lines
243 B
C#
using System;
|
|
|
|
namespace DarkUI
|
|
{
|
|
public class ScrollValueEventArgs : EventArgs
|
|
{
|
|
public int Value { get; private set; }
|
|
|
|
public ScrollValueEventArgs(int value)
|
|
{
|
|
Value = value;
|
|
}
|
|
}
|
|
}
|