I have an ItemTemplate in my WPF app main window which shows the details of all personnel in SQLite database.
Each row has 8 columns and one of them is the delete button. I want to get the values inside all fields of the row whose delete button is clicked on in my code-behind.
I have...
I have an observablecollection of class type as follows:
public ObservableCollection<selectedLevel> selectedLevels { get; set; }
selectedLevels = new ObservableCollection<selectedLevel>();
public class selectedLevel
{
public string Level
{
get;
set;
}
public...
I've created a custom item template. The ProjectType is CSharp and I can select it when I add a new item to a class library, but not ASP.NET Core projects.
All the documentation I found didn't cover if it's possible to support multiple project types.
I've tried "CSharp, Web" without luck...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.