Done
This commit is contained in:
parent
079f196dcf
commit
4794158d40
@ -34,19 +34,17 @@ namespace WinFormsLibrary1
|
||||
{
|
||||
get
|
||||
{
|
||||
string checkedItems = "";
|
||||
for (int i = 0; i < checkedListBox.Items.Count; i++)
|
||||
{
|
||||
if (checkedListBox.GetItemChecked(i))
|
||||
{
|
||||
checkedItems += checkedListBox.Items[i].ToString() + " ";
|
||||
}
|
||||
}
|
||||
if (checkedListBox.CheckedItems != null)
|
||||
return checkedItems;
|
||||
else
|
||||
return "";
|
||||
}
|
||||
|
||||
if (checkedListBox.SelectedItem != null)
|
||||
{
|
||||
return checkedListBox.SelectedItem.ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
}
|
||||
set
|
||||
{
|
||||
for (int i = 0; i < checkedListBox.Items.Count; i++)
|
||||
|
@ -53,16 +53,11 @@ namespace COP
|
||||
set
|
||||
{
|
||||
|
||||
if (!minValue.HasValue || !maxValue.HasValue)
|
||||
if (!minValue.HasValue || !maxValue.HasValue || value < minValue || value > maxValue)
|
||||
{
|
||||
throw new NoRangeException("Диапозон не был задан");
|
||||
}
|
||||
if (value < minValue || value > maxValue)
|
||||
{
|
||||
|
||||
return;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
dateTimePicker.Value = value.Value;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user