//Доп. переменная
public bool IsFocusLabel = false;
//Обработчик наведения на надпись
public void EventFocusLabel()
{
if (!IsFocusLabel)
{
//Издаем звук
//Меняем значение переменной
IsFocusLabel = !IsFocusLabel;
}
}
//Обработчик, уход с надписи
public void EventBlurLabel()
{
IsFocusLabel = false;
}
IEnumerable<IElement> image = document.QuerySelectorAll("img").ToArray();
foreach (var item in image)
{
list.Add(item.GetAttribute("src"));
}
return list.ToArray();
list.Add(item.GetAttribute("src").ToString());
public async Task<IActionResult> EditBook(Book book)
{
if (count_of_books(book) < 4)
{
//Достаем книгу из бд с текущим контекстом db.
var temp = db.Books.Get(i => id == i.m_ID)
//Изменяем необходимые поля
temp.Name = book.Name;
//Сохраняем
db.Books.UpdateRange(temp);
await db.SaveChangesAsync();
return RedirectToAction("Index");
}
else
{
return Redirect($"ErrUserHaveBooksOverLimit?id={book.UserID}");
}
}
https://docs.microsoft.com/ru-ru/dotnet/csharp/lan...
Возможно причина в этом.