Use Spliter : Splitter « GUI « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » GUI » Splitter 
14.34.2.Use Spliter
Use Spliter
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms

public class UseSpliter
   public Shared Sub Main
        Application.Run(New frmMultipane)
   End Sub
End class
Public Class frmMultipane
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is NothingThen
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    Friend WithEvents TreeView1 As System.Windows.Forms.TreeView
    Friend WithEvents Splitter1 As System.Windows.Forms.Splitter
    Friend WithEvents Panel1 As System.Windows.Forms.Panel
    Friend WithEvents ListView1 As System.Windows.Forms.ListView
    Friend WithEvents ImageList1 As System.Windows.Forms.ImageList
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container()
        Me.TreeView1 = New System.Windows.Forms.TreeView()
        Me.Splitter1 = New System.Windows.Forms.Splitter()
        Me.Panel1 = New System.Windows.Forms.Panel()
        Me.ListView1 = New System.Windows.Forms.ListView()
        Me.Panel1.SuspendLayout()
        Me.SuspendLayout()
        '
        'TreeView1
        '
        Me.TreeView1.Dock = System.Windows.Forms.DockStyle.Left
        Me.TreeView1.Name = "TreeView1"
        Me.TreeView1.SelectedImageIndex = -1
        Me.TreeView1.Size = New System.Drawing.Size(200221)
        Me.TreeView1.TabIndex = 0
        '
        'Splitter1
        '
        Me.Splitter1.Location = New System.Drawing.Point(2000)
        Me.Splitter1.Name = "Splitter1"
        Me.Splitter1.Size = New System.Drawing.Size(8221)
        Me.Splitter1.TabIndex = 1
        Me.Splitter1.TabStop = False
        '
        'Panel1
        '
        Me.Panel1.Controls.AddRange(New System.Windows.Forms.Control() {Me.ListView1})
        Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill
        Me.Panel1.Location = New System.Drawing.Point(2080)
        Me.Panel1.Name = "Panel1"
        Me.Panel1.Size = New System.Drawing.Size(192221)
        Me.Panel1.TabIndex = 2
        '
        'ListView1
        '
        Me.ListView1.Dock = System.Windows.Forms.DockStyle.Fill
        Me.ListView1.Name = "ListView1"
        Me.ListView1.Size = New System.Drawing.Size(192221)
        Me.ListView1.TabIndex = 0
        '
        'frmMultipane
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(400221)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Panel1, Me.Splitter1, Me.TreeView1})
        Me.Name = "frmMultipane"
        Me.Text = "Multi-Pane Example"
        Me.Panel1.ResumeLayout(False)
        Me.ResumeLayout(False)

    End Sub

#End Region

    Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs_
    Handles MyBase.Load
        TreeView1.ShowPlusMinus = True
        TreeView1.Sorted = True
        TreeView1.ShowLines = True
        Dim aNode As New TreeNode("c:\")
        aNode.Tag = "c:\"
        TreeView1.Nodes.Add(aNode)
    End Sub
    Private Sub getDirs(ByVal sender As Object, ByVal e As TreeViewEventArgs)Handles TreeView1.AfterSelect

        If Not e.Node.Nodes.Count = 0 Then Exit Sub
        Dim directory As New System.IO.DirectoryInfo(e.Node.Tag.ToString())
        getFiles(directory)
        Dim directories As System.IO.DirectoryInfo()
        directories = directory.GetDirectories()
        For Each directory In directories
            Dim aTreenode As New TreeNode(directory.Name)
            aTreenode.Tag = directory.FullName
            e.Node.Nodes.Add(aTreenode)
        Next
        e.Node.Expand()
    End Sub
    
    Sub getFiles(ByVal directory As System.IO.DirectoryInfo)
        ListView1.Columns.Clear()
        ListView1.Items.Clear()
        ListView1.View = View.Details
        ListView1.Columns.Add("Filename", 100, HorizontalAlignment.Left)
        ListView1.Columns.Add("Extension", 50, HorizontalAlignment.Left)
        ListView1.Columns.Add("Bytes", 50, HorizontalAlignment.Right)
        Dim files() As System.IO.FileInfo = directory.GetFiles
        Dim file As System.IO.FileInfo
        For Each file In files
            Dim li As New ListViewItem(file.Name)
            li.SubItems.Add(file.Extension)
            li.SubItems.Add(file.Length)
            ListView1.Items.Add(li)
        Next
    End Sub
End Class
14.34.Splitter
14.34.1.Splitter ControlSplitter Control
14.34.2.Use SpliterUse Spliter
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.