How can i make my second form open right?
When i run my program the second form opens for only half a second. I'm new to coding and especially new to c#. My objective is to have a list view where i can add "Goods" and "Suppliers" with an Add...
View ArticleHow to easily create a fixed header in list view asp.net
I am trying to keep my header fixed while scrolling but I can't figure it out. Here is my ListView Code:<asp:ListView ID="ListView1" runat="server" DataSourceID="SqlDataSource1"...
View ArticleMFC ListControl functions Slowing everything down
I am developing a C++ MFC-based application that takes positional data over IP, does some stuff, sends it back over IP, then outputs it to the list control. Every packet is collected, processed and...
View ArticleWhy my adapter isn't working and not showing on my list view?
after watching plenty of tutorials, and doing exactly the same my adapter still won't work.my application is a forum-like application where users can post forums (questions) and other users can answer...
View ArticleFlutter App Performance Issues with Long List
I have a flutter app where user can add items to a list which are stored in firebase. User can add up to 1000 items at once. Initially this is no issue but with a growing number of list items the app...
View ArticleAccess row item of Gtk.ListView
I need to add a custom class to some rows in a GtkListView widget so that I can change their background colour. Looking on the inspector, ListItem rows are instances of GtkListItemWidget, but I can't...
View Article.NET MAUI intuitive context menu for ListView items
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 ...)...
View ArticleWPF, ListView. RenderTargetBitmap - how to render whole ListView, not limited...
I have ListView, which displays some pictures. Not all pictures are visible on screen (in Window). I want to make something like 'contact sheet' - all pictures.I got ScrollViewer from ListView, and got...
View Articlehighlight the entire line in listview along with the image
There is a listview with the following settings and content:ListView2.Columns.Add("First name")ListView2.Columns.Add("Email")ListView2.Columns.Add("Country")ListView2.View =...
View ArticleSimple Document Listing Organization
Does anyone know of a simple program or widget for Linux that allows a user to create a graphical listing of recent documents edited in the environment by various programs, and allows the documents to...
View ArticleFlutter - Auto size AlertDialog to fit list content
I need to load list cities dynamically from rest webservice and let user choose a city from alert dialog.My code:createDialog() { fetchCities().then((response) { showDialog( context: context, builder:...
View ArticleWPF: ListView & Editing ListViewItem
I want to be able to select an item and then edit its label:Select an itemItem is highlightedClick on it's labelLabel's TextBlock is replaced with TextBoxModify the labelOnly one item can be edited at...
View ArticleHow to use this view in change my items, like this photo
enter image description hereHow to use this view in change my items, like this photo.is it library or recycler View?I want a list of items or recycler like this photo.help me, please!How to use this...
View ArticleListView in WPF is not showing the ViewModel static data
I am creating a small example to show the enum data using ViewModel on WPF page. But Somehow it is not showing.public class GameParticipants: IGameParticipants{ public int Id{ get; set; } public...
View ArticleImplementing a ListView with a CollectionViewSource - Not Refreshing?
I'm working on setting up a ListView whose Source property is set to an ivar of a class of mine, called Cat.Each Cat has an ObservableCollection of Trait objects:private...
View ArticleJavaFX Lists not updating properly [closed]
I have a problem with ListView in JavaFX. I replicated the problem in a small application available here on BitBucket. As you see in the GIF below, I have a textfield and a listview containing a set of...
View Articleasp.net textbox clientside lost focus event in listview control
I have below lines of code in asp:list view control, if user input any value on 2nd text box, on client side lost focus event I need to calculate txtTokensReq * txtQty and display in...
View ArticleHow to search in listview
I am trying to create a Loop that will read through the information on my ListView through the SubItem to find the text that matches the text in my Textbox whenever I hit the search button and Focuses...
View ArticleFlutter: Navigating and populating new screen by clicking on list
Sorry for not being able to provide code for this question since I'm still at the very beginning of the development. I'll try to create an example with something simple that achieves what I'm looking...
View ArticleWhy my SelectedItem from ListView isn't working?
This is code in wpf which shows the tour requests, arranged in two columns:<ListView x:Name="TourRequestsListView" ItemsSource="{Binding TourRequests}" SelectedItem="{Binding SelectedTourRequest,...
View Article