本文整理汇总了C#中System.Windows.Forms.ListView.SendToBack方法的典型用法代码示例。如果您正苦于以下问题:C# ListView.SendToBack方法的具体用法?C# ListView.SendToBack怎么用?C# ListView.SendToBack使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.ListView
的用法示例。
在下文中一共展示了ListView.SendToBack方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AnalystsWorkstationMainForm
public AnalystsWorkstationMainForm()
{
InitializeComponent();
m_LPRCore = new LPRServiceEntryPoint();
m_AppData = m_LPRCore.GetAppData();
this.Text = "First Evidence Plate Analysts Workstation, version " + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
///
/// enable LPR Diagnostics
///
if (Application.ExecutablePath.Contains("Visual Studio")) // assumes I am debugging on Vista
{
m_AppData.LPRDiagEnabled = true;
}
else
{
m_AppData.LPRDiagEnabled = false;
}
m_AppData.LPRDiagEnabled = false;
// Remove Diagnostic tabs if not in diag mode
if (!m_AppData.LPRDiagEnabled)
{
tabControlMain.TabPages.Remove(tabPageLPRDiagnostics);
tabControlMain.TabPages.Remove(tabPageOCRLib);
}
else
{
OCRSourceFolder = UserSettings.Get(UserSettingTags.AW_OCRLibSourceDirectory);
labelOCRSourceFolder.Text = OCRSourceFolder;
OCRDestinationFolder = UserSettings.Get(UserSettingTags.AW_OCRLibDestinationDirectory);
labelOCRDestinationFolder.Text = OCRDestinationFolder;
}
//// need some channel names assigned as place holders, off-line processing simulates hardware channels to the rest of the chain
//for (int i = 0; i < m_AppData.MAX_VIRTUAL_CHANNELS; i++)
// UserSettings.Set(UserSettingTags.ChannelNames.Name(i), i.ToString());
// allow parallel processing based on the number of cores. The ProcessorCount returns the number of cores
m_AppData.MAX_VIRTUAL_CHANNELS = Math.Min(Environment.ProcessorCount,m_AppData.MAX_PHYSICAL_CHANNELS);
m_DataGridRowIndex = new ThreadSafeHashTable(m_AppData.MAX_MOVIE_FILES_TO_LOAD);
m_AppData.MoviePlayerParentForm = (object)this;
m_AppData.RunninAsService = false;
m_LPRCore.Start(m_AppData.RunninAsService);
m_LPREngine = (LPREngine)m_AppData.LPREngine;
m_LPREngine.OnNewFilteredPlateGroupEvent += new LPREngine.NewPlateEvent(m_LPREngine_OnNewPlateEvent);
m_Log = (ErrorLog)m_AppData.Logger;
m_FrameGenerator = (FrameGenerator)m_AppData.FrameGenerator;
this.FormClosing += new FormClosingEventHandler(AnalystsWorkstationMainForm_FormClosing);
m_PathManager = (PATHS)m_AppData.PathManager;
m_DVR = (DVR)m_AppData.DVR;
m_SmartSearchUC = new SmartSearchLibUC(m_AppData, OnSearchFatalError);
m_SmartSearchUC.Location = new Point(0, 0);
m_SmartSearchUC.Dock = DockStyle.Fill;
CreateBatchModeVideoDisplayPanels();
m_FrameGenerator.MovieFileController.DisplayPanels = m_VideoDisplayPanels;
m_FrameGenerator.MovieFileController.OnStatusUpdateFromPlayerEvent += new MovieFiles.OnStatusUpdateFromPlayer(MovieFileController_OnStatusUpdateFromPlayerEvent);
tabPageSearch.Controls.Add(m_SmartSearchUC);
InitMainContainerGrid(dataGridViewFilesInProcess, new System.Drawing.Size(761, 200), new System.Drawing.Point(273, 483));
m_EditModePictureSelectionViewer = new ListView();
m_EditModePictureSelectionViewer.Location = new Point(219, 200);
m_EditModePictureSelectionViewer.View = View.LargeIcon;
m_EditModePictureSelectionViewer.Size = new Size(this.Size.Width - 275, this.Size.Height - 300);
m_EditModePictureSelectionViewer.ItemSelectionChanged += new ListViewItemSelectionChangedEventHandler(m_EditModePictureSelectionViewer_ItemSelectionChanged);
buttonListViewVisible.Text = m_ShowThumbNails;
m_EditModePictureSelectionViewer.Enabled = false;
m_EditModePictureSelectionViewer.Visible = false;
m_EditModePictureSelectionViewer.SendToBack();
tabPageEditMode.Controls.Add(m_EditModePictureSelectionViewer);
tabControlLPRResults.TabPages.Clear();
// get DVR storage mode for the batch and edit mode processing
string sm = UserSettings.Get(UserSettingTags.DVR_StorageMode);
//.........这里部分代码省略.........