CPF/CpfRazorSample/Test.razor

17 lines
371 B
Plaintext
Raw Normal View History

2024-01-08 10:55:10 +08:00

<Panel Background="#f00" Width="100" Height="100">
2024-01-08 17:37:26 +08:00
<Panel Background="#00f" Width="20" Height="30" MouseDown="OnMouseDown">
</Panel>
@if (visible)
{
<Panel Background="#0f0" Width="20" Height="30" MarginLeft="10"></Panel>
}
2024-01-08 10:55:10 +08:00
</Panel>
2024-01-08 17:37:26 +08:00
@code
{
bool visible = false;
void OnMouseDown()
{
visible = !visible;
}
}