Skip to content

Commit 7dc3dea

Browse files
NirmalKumarYuvarajjsuarezruiz
authored andcommitted
Updated code changes
1 parent 1ca5802 commit 7dc3dea

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/Controls/tests/TestCases.HostApp/Issues/Issue17864.xaml.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ private void Button_Clicked(object sender, EventArgs e)
2323
}
2424
}
2525

26-
internal class Issue17864_GroupViewModel : ObservableCollection<Issue17864_ItemViewModel>, Issue17864_IItemViewModel
26+
class Issue17864_GroupViewModel : ObservableCollection<Issue17864_ItemViewModel>, Issue17864_IItemViewModel
2727
{
2828

2929
public Issue17864_GroupViewModel(int groupIndex)
@@ -34,12 +34,12 @@ public Issue17864_GroupViewModel(int groupIndex)
3434
public string ItemText { get; }
3535
}
3636

37-
public interface Issue17864_IItemViewModel
37+
interface Issue17864_IItemViewModel
3838
{
3939
string ItemText { get; }
4040
}
4141

42-
internal class Issue17864_ItemListViewModel : INotifyPropertyChanged
42+
class Issue17864_ItemListViewModel : INotifyPropertyChanged
4343
{
4444
public event PropertyChangedEventHandler PropertyChanged;
4545

@@ -97,7 +97,7 @@ public bool IsGrouped
9797

9898
}
9999

100-
internal class Issue17864_ItemViewModel : Issue17864_IItemViewModel
100+
class Issue17864_ItemViewModel : Issue17864_IItemViewModel
101101
{
102102

103103
public Issue17864_ItemViewModel(int itemIndex)
@@ -106,6 +106,5 @@ public Issue17864_ItemViewModel(int itemIndex)
106106
}
107107

108108
public string ItemText { get; }
109-
110109
}
111110
}

0 commit comments

Comments
 (0)