Chunks and threads in model
This commit is contained in:
parent
a466efbb27
commit
764a439645
4 changed files with 155 additions and 321 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue