PictureBox
Description
Usage
@namespace Gap.Blazor.Components
@inherits WMControlComponentBase
<WMStyleBase model=@pictureBox></WMStyleBase>
<div class="@(model.GetStringClasses() + " " + pictureBox.GetToolTipClass())">
@if (pictureBox.Image != null)
{
<img Title="@pictureBox.ToolTipText"
alt="@pictureBox.Name"
src="@this.GetImage()"
onclick="@this.onClickHandler" />
}
</div>
<style>
[email protected]() {
opacity: @this.GetOpacity();
}
</style>
Properties
Methods
Dynamic Rendering
Styles
Events
Last updated