CPF/CpfRazorSample/Test.razor

20 lines
466 B
Plaintext
Raw Normal View History

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

2024-01-08 20:55:43 +08:00
<StackPanel Background="#f00" Width="500" Height="500">
<Button Width="80" Height="30" Click="OnMouseDown" Content="text">
</Button>
<CheckBox Content="12"></CheckBox>
2024-01-08 17:37:26 +08:00
@if (visible)
{
<Panel Background="#0f0" Width="20" Height="30" MarginLeft="10"></Panel>
}
2024-01-08 20:55:43 +08:00
</StackPanel>
2024-01-08 17:37:26 +08:00
@code
{
bool visible = false;
2024-01-08 20:55:43 +08:00
string text = "test";
2024-01-08 17:37:26 +08:00
void OnMouseDown()
{
2024-01-08 20:55:43 +08:00
text = "test" + visible;
2024-01-08 17:37:26 +08:00
visible = !visible;
}
}