From f5cc28f202eda49ef911506d4782bea647ca6507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommy=20=C3=96man?= Date: Sun, 12 Oct 2025 18:03:08 +0200 Subject: [PATCH] =?UTF-8?q?F=C3=B6re=20start=20av=20inf=C3=B6rande=20av=20?= =?UTF-8?q?Community=20Toolkit=20MVVM?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GreadyPoang/Views/RoundRunningView.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GreadyPoang/Views/RoundRunningView.xaml.cs b/GreadyPoang/Views/RoundRunningView.xaml.cs index e2d8035..8077683 100644 --- a/GreadyPoang/Views/RoundRunningView.xaml.cs +++ b/GreadyPoang/Views/RoundRunningView.xaml.cs @@ -62,7 +62,7 @@ public partial class RoundRunningView : ContentPage var value = column.Values[rowIndex]; var cell = CreateCell(value); ScoreGrid.Children.Add(cell); - Grid.SetRow(cell, rowIndex + 1); // +1 för att hoppa över rubrikraden + Grid.SetRow(cell, column.Values.Count - rowIndex); // +1 för att hoppa över rubrikraden Grid.SetColumn(cell, colIndex); }