Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update response-to-an-event.md #572

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ title: Обработка событий
import SolutionCodeBehindScreenshot from '/img/get-started/test-drive/solution-code-behind.png';
import EventDebugOutputScreenshot from '/img/get-started/test-drive/event-debug-output.png';

Есть несколько способов обработки событий на Avalonia.
В Avalonia есть несколько способов обработки событий.
На этой странице вы узнаете, как использовать один из самых распостраненных: нажатие кнопки.

В начале, вы напишите обработку нажатия кнопки, которое никак не взаимодействует с другими Controls.
Для начала, вы напишите обработку нажатия кнопки, которое никак не взаимодействует с другими Controls.

## Code-behind

Expand All @@ -21,7 +21,7 @@ XAML файл главного окна, связан с файлом C#. Есл

- Откройте файл `MainWindows.axaml.cs`

Вы увидите код C#, похожий на нижеуказанный:
Вы увидите код C#, похожий на нижеприведенный:

```csharp
using Avalonia.Controls;
Expand All @@ -48,7 +48,7 @@ namespace GetStartedApp
</Window>
```

To add an event handler for the button, follow this procedure:
Чтобы добавить обработчик событий для кнопки, выполните следующие шаги:
- В файле `MainWindows.axaml.cs`, найдите конструктор `MainWindows` (инструкция была ранее)
- Добавьте следующий код после конструктора:

Expand Down Expand Up @@ -82,4 +82,4 @@ using System.Diagnostics;

<img className="center" src={EventDebugOutputScreenshot} alt="" />

На следующей странице вы узнаете, как использовать Code-Behind для чтение и изменения свойств Controls во время работы программы.
На следующей странице вы узнаете, как использовать Code-Behind для чтения и изменения свойств Controls во время работы программы.