mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-29 10:49:25 +08:00
17 lines
371 B
Plaintext
17 lines
371 B
Plaintext
|
|
<Panel Background="#f00" Width="100" Height="100">
|
|
<Panel Background="#00f" Width="20" Height="30" MouseDown="OnMouseDown">
|
|
</Panel>
|
|
@if (visible)
|
|
{
|
|
<Panel Background="#0f0" Width="20" Height="30" MarginLeft="10"></Panel>
|
|
}
|
|
</Panel>
|
|
@code
|
|
{
|
|
bool visible = false;
|
|
void OnMouseDown()
|
|
{
|
|
visible = !visible;
|
|
}
|
|
} |