Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
80 views

My application accepts files dragged from Windows and adds them to a GUICtrlCreateListView(), but I don’t want to add them twice: GuiCreate('Drag and Drop', 530, 320, @DesktopWidth / 2 - 192, @...
Manngo's user avatar
  • 17k
0 votes
2 answers
110 views

I'm working on a WPF application where I want to apply a global style to all ListViewItem elements across my application. I've defined an ItemContainerStyle for ListViewItem in App.xaml, intending to ...
arti's user avatar
  • 657
0 votes
0 answers
350 views

I have a .NET MAUI App with a ListView Control. Every ListViewItem opens a new Details Page when being selected (let-click/tapped). Additionally, I have a set of actions (Edit, Delete, Add Child ...) ...
Kai Fröhlich's user avatar
0 votes
1 answer
51 views

I would like to use the following class: internal class IPComparer : IComparer<string> { public int Compare(string a, string b) { return Enumerable.Zip(a.Split('.'), b.Split('.')...
Francesco's user avatar
-1 votes
2 answers
72 views

I have a C# WPF application and using ListView with basically works fine. My issue is: I want to preselect items in the list view. The selection should be visible for the user, and the user should be ...
Emil's user avatar
  • 29
0 votes
0 answers
52 views

I have a ListView named lst_Employees and have combined 2 ComboBoxes named cmb_EmployeeID and cmb_EmployeeName. When I choose someone from cmb_EmployeeName, the cmb_EmployeeID's selected index change ...
Cooper's user avatar
  • 31
0 votes
1 answer
130 views

I have written a WPF application that lets a user add and view a list of project files that he needs to build in batch mode, and then view the run time progress of each file as it is being built one-...
cnishd's user avatar
  • 3
0 votes
0 answers
22 views

I created a list view where I added rows of data coming from the database. Imagine there are 200 records in the list view, user selects the first row, then hold shift and click the last row. This ...
jonathan tan's user avatar
0 votes
0 answers
88 views

I have a little problem. When I click the button, I want the ListView to move to the next object. Also, when it moves to the new object, it needs to get the address of the new object. The program will ...
Uğur Özşahin's user avatar
0 votes
1 answer
72 views

I have a ListView which is bound to an ObservableCollection I have added a DataTemplate to a ListView to bind item with TextBox in purpose to Rename selectedItem using Rename from ContextMenu: View ...
PanJakub97's user avatar
1 vote
1 answer
350 views

I have an alert dialog with a list inside. For some weird reason, I am getting a an error because of a size property var jobTypes = [ {"Job type": jobTypeHm, "Active": true}, ...
user avatar
0 votes
0 answers
40 views

This is the error I got whenever I tried to populate my ListView with "users" collection using DataTable returned from a repository function that communicates with MySQL database. Note that ...
I Forgot My Name's user avatar
0 votes
3 answers
205 views

I have a List of items, each item has a color, when the list passes like 15 items the color of the items that are off-screen changes. I've tried with ListView.builder and ListView.custom and it's the ...
NadMosJoe's user avatar
0 votes
2 answers
527 views

I created a ListView and add some ItemsText's, arranged them in their respective sizes/positions and when try to populate them, some ItemsText was cut in half (short width), then I decide to change ...
Geovanii Amaral's user avatar
-1 votes
1 answer
581 views

I want to make a chess game in WPF, I decided to use listview to display my fields. I have a class named Field with properties. I have a list containing 64 fields and i changed to style of my listview ...
freasy's user avatar
  • 11
1 vote
4 answers
521 views

I'm creating a software for a marketplace and want to create a listview that counts all the duplicate values inside a column. This count will show how many items were oftenly bought by buyers. This is ...
Authorized's user avatar
0 votes
1 answer
253 views

Hy, I am trying to show a comment input if the item checkbox is checked and hide it else, i have this XAML <ListView ItemsSource="{Binding TaskItems}" x:Name="TasksItems" ...
Sẳmãr Hẳrsi's user avatar
1 vote
0 answers
61 views

I have created a Xamarin ListView sample with customized item template. When I clicked the content view in the item template focus is applied for the list view item instead of that content view in ...
Rasika Palanisamy's user avatar
0 votes
1 answer
223 views

So I tried to apply a different Background color to each ListViewItem: <Style.Triggers> <MultiDataTrigger> <MultiDataTrigger.Conditions> <Condition Binding=...
Ran Pol's user avatar
  • 87
-1 votes
1 answer
386 views

In a GridViewColumn I have below converter: <GridViewColumn Header="Number" DisplayMemberBinding="{Binding (ItemsControl.AlternationIndex), ...
Willy's user avatar
  • 10.8k
-1 votes
1 answer
813 views

I have an WPF ListView with three columns. I see that in my ListView appears an extra empty space(column) on the right handside and I do not know why. How can I remove this extra space using XAML? &...
Willy's user avatar
  • 10.8k
0 votes
0 answers
429 views

In an WPF ListView I have ListViewItems that consist of two columns, one column is a TextBlock and the another one contains two buttons (Edit and Delete) in the same column. Also the first row of the ...
Willy's user avatar
  • 10.8k
2 votes
2 answers
276 views

I need the items in my listView to have a height so it the list exactly fits the screen. Here's my code given below. I tried setting the Height of rows in my grid to a custom value, but that would ...
Kalindu's user avatar
  • 293
0 votes
1 answer
102 views

I am using this style <Style x:Key="ListViewItemContainerStyle" TargetType="ListViewItem"> <Setter Property="FontFamily" ...
Laxmi's user avatar
  • 93
0 votes
1 answer
642 views

I am currently working on this old, rusted .NET Framework Platform. In my form I have a ListView, and I´m adding some data-tagged items into it. The new data-tagged item gets placed one step under the ...
DesktopDev's user avatar

1
2 3 4 5
22