frmAllBrowsers.vb
上传用户:szledliu
上传日期:2021-01-29
资源大小:13805k
文件大小:1k
源码类别:

C#编程

开发平台:

C#

  1. Public Class frmAllBrowsers
  2.     Private Sub frmAllBrowsers_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  3.         'Me.SplitContainer1.Panel1MinSize = Me.Width / 2
  4.         'Dim ofrm As frmBrowser
  5.         'Dim i As Integer
  6.         'With AppManager.MainForm.tc1()
  7.         '    For i = 0 To .TabPages.Count - 1
  8.         '        If TypeOf .TabPages(i).Form Is frmBrowser Then
  9.         '            ofrm = .TabPages(i).Form
  10.         '            Dim ob As New CapBrowser
  11.         '            ob.pb.Image = ofrm.PageImage.Image
  12.         '            If IsOdd(i) Then
  13.         '                ob.Top = SplitContainer1.Panel1.Controls.Count * ob.Height + 10
  14.         '                ob.Width = Me.SplitContainer1.Panel1.Width
  15.         '                Me.SplitContainer1.Panel1.Controls.Add(ob)
  16.         '            Else
  17.         '                ob.Top = SplitContainer1.Panel2.Controls.Count * ob.Height + 10
  18.         '                ob.Width = Me.SplitContainer1.Panel2.Width
  19.         '                Me.SplitContainer1.Panel2.Controls.Add(ob)
  20.         '            End If
  21.         '        End If
  22.         '    Next
  23.         'End With
  24.     End Sub
  25.     Public Function IsOdd(ByVal lngNumber As Long) As Boolean
  26.         Return (lngNumber Mod 2)
  27.     End Function
  28.     Private Sub SplitContainer1_SplitterMoved(ByVal sender As System.Object, ByVal e As System.Windows.Forms.SplitterEventArgs) Handles SplitContainer1.SplitterMoved
  29.     End Sub
  30. End Class