mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-26 00:45:18 +00:00
16 lines
529 B
Plaintext
16 lines
529 B
Plaintext
<div class="stretch-container backdrop-panel">
|
|
<div class="title-bar-header">
|
|
Select source executable
|
|
</div>
|
|
<div class="executables-list">
|
|
@foreach(var executable in this.ViewModel.Executables)
|
|
{
|
|
<div class="executable-item" @onclick="() => this.ViewModel.SelectExecutable(executable)">
|
|
@executable
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
@page "/guildwars/copy-selection"
|
|
@inherits ViewBase<GuildWarsCopySelectionView, GuildWarsCopySelectionViewModel> |