Chunks and threads in model

This commit is contained in:
Marco 2025-09-19 09:53:31 +02:00
commit 764a439645
4 changed files with 155 additions and 321 deletions

View file

@ -134,6 +134,30 @@ namespace ImageCatalog_2
}
}
private int _chunkSize;
public int ChunkSize
{
get => _chunkSize;
set
{
_chunkSize = value;
NotifyPropertyChanged();
}
}
private int _threadsCount;
public int ThreadsCount
{
get => _threadsCount;
set
{
_threadsCount = value;
NotifyPropertyChanged();
}
}
private void Test(object parameter)
{
Debug.WriteLine("Yep");