-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUpDownButtonsComponent.razor
More file actions
26 lines (23 loc) · 946 Bytes
/
UpDownButtonsComponent.razor
File metadata and controls
26 lines (23 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@using BlazorStyled
<Styled @bind-Classname=@ButtonContainerStyle>
display: flex;
flex-direction: column;
align-items: center;
position: @Position;
left: @LeftStyle;
top: @TopStyle;
z-index: 200;
</Styled>
<Styled @bind-Classname=@ButtonStyle>
margin-bottom: @GapStyle;
</Styled>
<div class="@ButtonContainerStyle">
<ImageButton Name="UpButton" Parent="this" ButtonNumber="1" ClassName="@ButtonStyle"
Width="ButtonWidth" Height="ButtonHeight"
ClickHandler="ButtonClicked" ImageUrl="_content/DataJuggler.Blazor.Components/Images/Buttons/BlueUpArrowGray32.png">
</ImageButton>
<ImageButton Name="DownButton" Parent="this" ButtonNumber="2" ClassName="@ButtonStyle"
Width="@ButtonWidth" Height="@ButtonHeight"
ClickHandler="ButtonClicked" ImageUrl="_content/DataJuggler.Blazor.Components/Images/Buttons/BlueDownArrowGray32.png">
</ImageButton>
</div>