Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
F

Flow84

@Flow84
About
Posts
5
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Changing display area in ListView
    F Flow84

    Im writing this so if anyone else search for it they will find my solution. I have done a walk around for this problem. By using the inbuilt Scrollers and just having one VScrollBar over the region the default one should be. all works good. hope someone see this as usefull :)

    C# csharp css help question

  • Changing display area in ListView
    F Flow84

    no one?

    C# csharp css help question

  • Changing display area in ListView
    F Flow84

    I have tried the following with no result. Not even if i change new Point(hScrollBar1.Value, listView1.AutoScrollOffset.Y); to new Point(250, 1); How should it be done? this = UserControll listView1 = ListView hScrollBar1 = HScrollBar void hScrollBar1_ValueChanged(object sender, EventArgs e) { Console.WriteLine("listView1.AutoScrollOffset: " + listView1.AutoScrollOffset.ToString()); listView1.AutoScrollOffset = new Point(hScrollBar1.Value, listView1.AutoScrollOffset.Y); this.ScrollControlIntoView(listView1); Console.WriteLine("listView1.AutoScrollOffset: " + listView1.AutoScrollOffset.ToString()); }

    C# csharp css help question

  • Message Box start position
    F Flow84

    I dont think that this is possible. But you could always do your own MessageBox with a Form. Example: Form f = new Form(); f.Size = new Size(100, 100); f.StartPosition = FormStartPosition.CenterParent; f.ShowDialog();

    C# question

  • Changing display area in ListView
    F Flow84

    Hi. Im doing a VirtualListView using 1 ListView, 1 VScrollBar and 1 HScrollBar. Where im just adding items that can actually be showed. This so it goes way much faster and has much less flicker when adding 58000 items one by one. (Has to be done this way as there is no way to know how many items that should be added or when it is finished, reading items from stream). My problem is not to Scroll down/up with VScrollBar but to scroll to see other columns with HScrollBar. In picture below A and C is my VirtualListView and B is standard ListView from .net. As you can see my VirtualListView:s are not showing correct display area. VirtualListView.png How can this be done?

    C# csharp css help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups