Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / ListViewInsertionMark.cs / 1305376 / ListViewInsertionMark.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
using System.Drawing;
using System.Runtime.InteropServices;
using System.Diagnostics;
namespace System.Windows.Forms {
///
///
///
/// Encapsulates insertion-mark information
///
///
public sealed class ListViewInsertionMark
{
private ListView listView;
private int index = 0;
private Color color = Color.Empty;
private bool appearsAfterItem = false;
internal ListViewInsertionMark(ListView listView) {
this.listView = listView;
}
///
///
/// Specifies whether the insertion mark appears
/// after the item - otherwise it appears
/// before the item (the default).
///
///
public bool AppearsAfterItem {
get
{
return appearsAfterItem;
}
set
{
if (appearsAfterItem != value) {
appearsAfterItem = value;
if (listView.IsHandleCreated) {
UpdateListView();
}
}
}
}
///
///
/// Returns bounds of the insertion-mark.
///
///
public Rectangle Bounds {
get
{
NativeMethods.RECT rect = new NativeMethods.RECT();
listView.SendMessage(NativeMethods.LVM_GETINSERTMARKRECT, 0, ref rect);
return Rectangle.FromLTRB(rect.left, rect.top, rect.right, rect.bottom);
}
}
///
///
/// The color of the insertion-mark.
///
///
public Color Color {
get
{
if (color.IsEmpty) {
color = SafeNativeMethods.ColorFromCOLORREF((int)listView.SendMessage(NativeMethods.LVM_GETINSERTMARKCOLOR, 0, 0));
}
return color;
}
set
{
if (color != value) {
color = value;
if (listView.IsHandleCreated) {
listView.SendMessage(NativeMethods.LVM_SETINSERTMARKCOLOR, 0, SafeNativeMethods.ColorToCOLORREF(color));
}
}
}
}
///
///
/// Item next to which the insertion-mark appears.
///
///
public int Index {
get
{
return index;
}
set
{
if (index != value) {
index = value;
if (listView.IsHandleCreated) {
UpdateListView();
}
}
}
}
///
///
/// Performs a hit-test at the specified insertion point
/// and returns the closest item.
///
///
public int NearestIndex(Point pt)
{
NativeMethods.POINT point = new NativeMethods.POINT();
point.x = pt.X;
point.y = pt.Y;
NativeMethods.LVINSERTMARK lvInsertMark = new NativeMethods.LVINSERTMARK();
UnsafeNativeMethods.SendMessage(new HandleRef(listView, listView.Handle), NativeMethods.LVM_INSERTMARKHITTEST, point, lvInsertMark);
return lvInsertMark.iItem;
}
internal void UpdateListView() {
Debug.Assert(listView.IsHandleCreated, "ApplySavedState Precondition: List-view handle must be created");
NativeMethods.LVINSERTMARK lvInsertMark = new NativeMethods.LVINSERTMARK();
lvInsertMark.dwFlags = appearsAfterItem ? NativeMethods.LVIM_AFTER : 0;
lvInsertMark.iItem = index;
UnsafeNativeMethods.SendMessage(new HandleRef(listView, listView.Handle), NativeMethods.LVM_SETINSERTMARK, 0, lvInsertMark);
if (!color.IsEmpty) {
listView.SendMessage(NativeMethods.LVM_SETINSERTMARKCOLOR, 0, SafeNativeMethods.ColorToCOLORREF(color));
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
using System.Drawing;
using System.Runtime.InteropServices;
using System.Diagnostics;
namespace System.Windows.Forms {
///
///
///
/// Encapsulates insertion-mark information
///
///
public sealed class ListViewInsertionMark
{
private ListView listView;
private int index = 0;
private Color color = Color.Empty;
private bool appearsAfterItem = false;
internal ListViewInsertionMark(ListView listView) {
this.listView = listView;
}
///
///
/// Specifies whether the insertion mark appears
/// after the item - otherwise it appears
/// before the item (the default).
///
///
public bool AppearsAfterItem {
get
{
return appearsAfterItem;
}
set
{
if (appearsAfterItem != value) {
appearsAfterItem = value;
if (listView.IsHandleCreated) {
UpdateListView();
}
}
}
}
///
///
/// Returns bounds of the insertion-mark.
///
///
public Rectangle Bounds {
get
{
NativeMethods.RECT rect = new NativeMethods.RECT();
listView.SendMessage(NativeMethods.LVM_GETINSERTMARKRECT, 0, ref rect);
return Rectangle.FromLTRB(rect.left, rect.top, rect.right, rect.bottom);
}
}
///
///
/// The color of the insertion-mark.
///
///
public Color Color {
get
{
if (color.IsEmpty) {
color = SafeNativeMethods.ColorFromCOLORREF((int)listView.SendMessage(NativeMethods.LVM_GETINSERTMARKCOLOR, 0, 0));
}
return color;
}
set
{
if (color != value) {
color = value;
if (listView.IsHandleCreated) {
listView.SendMessage(NativeMethods.LVM_SETINSERTMARKCOLOR, 0, SafeNativeMethods.ColorToCOLORREF(color));
}
}
}
}
///
///
/// Item next to which the insertion-mark appears.
///
///
public int Index {
get
{
return index;
}
set
{
if (index != value) {
index = value;
if (listView.IsHandleCreated) {
UpdateListView();
}
}
}
}
///
///
/// Performs a hit-test at the specified insertion point
/// and returns the closest item.
///
///
public int NearestIndex(Point pt)
{
NativeMethods.POINT point = new NativeMethods.POINT();
point.x = pt.X;
point.y = pt.Y;
NativeMethods.LVINSERTMARK lvInsertMark = new NativeMethods.LVINSERTMARK();
UnsafeNativeMethods.SendMessage(new HandleRef(listView, listView.Handle), NativeMethods.LVM_INSERTMARKHITTEST, point, lvInsertMark);
return lvInsertMark.iItem;
}
internal void UpdateListView() {
Debug.Assert(listView.IsHandleCreated, "ApplySavedState Precondition: List-view handle must be created");
NativeMethods.LVINSERTMARK lvInsertMark = new NativeMethods.LVINSERTMARK();
lvInsertMark.dwFlags = appearsAfterItem ? NativeMethods.LVIM_AFTER : 0;
lvInsertMark.iItem = index;
UnsafeNativeMethods.SendMessage(new HandleRef(listView, listView.Handle), NativeMethods.LVM_SETINSERTMARK, 0, lvInsertMark);
if (!color.IsEmpty) {
listView.SendMessage(NativeMethods.LVM_SETINSERTMARKCOLOR, 0, SafeNativeMethods.ColorToCOLORREF(color));
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextChangedEventArgs.cs
- WebServiceData.cs
- ScrollItemPattern.cs
- CleanUpVirtualizedItemEventArgs.cs
- AuthenticationManager.cs
- CodeComment.cs
- TreeNodeClickEventArgs.cs
- DesignerVerbCollection.cs
- MenuItem.cs
- _SecureChannel.cs
- ZoomComboBox.cs
- TextProviderWrapper.cs
- XmlSchemaDocumentation.cs
- Blend.cs
- InputBinding.cs
- CfgParser.cs
- X509Utils.cs
- RequestCachePolicy.cs
- Avt.cs
- ObjectContextServiceProvider.cs
- ThreadStateException.cs
- FlowDocumentPaginator.cs
- Schema.cs
- COM2IDispatchConverter.cs
- WeakReadOnlyCollection.cs
- ParsedAttributeCollection.cs
- _SslSessionsCache.cs
- HttpCapabilitiesEvaluator.cs
- IISMapPath.cs
- ColorAnimation.cs
- TagMapCollection.cs
- CreateRefExpr.cs
- IResourceProvider.cs
- RelativeSource.cs
- IdentityModelDictionary.cs
- TextBoxBase.cs
- Rect.cs
- AttributeData.cs
- Function.cs
- BitSet.cs
- Evidence.cs
- XmlConverter.cs
- TextMarkerSource.cs
- PropertyGridEditorPart.cs
- OdbcParameterCollection.cs
- ToolStripComboBox.cs
- Helper.cs
- ConfigurationSchemaErrors.cs
- CompilationSection.cs
- FunctionImportMapping.cs
- filewebrequest.cs
- CellConstantDomain.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- RowToParametersTransformer.cs
- Metadata.cs
- MetadataItem_Static.cs
- DictationGrammar.cs
- XmlSchemaAnyAttribute.cs
- FormatSettings.cs
- DataGridColumnCollection.cs
- WebSysDisplayNameAttribute.cs
- StyleCollection.cs
- FormViewDesigner.cs
- Parameter.cs
- WindowsSpinner.cs
- SpeechSeg.cs
- ListViewTableRow.cs
- RayHitTestParameters.cs
- MouseWheelEventArgs.cs
- Table.cs
- GenericFlowSwitchHelper.cs
- IUnknownConstantAttribute.cs
- ObjectDataSourceView.cs
- WebPartConnectionsConnectVerb.cs
- IteratorFilter.cs
- Int32Rect.cs
- FocusTracker.cs
- filewebresponse.cs
- ArglessEventHandlerProxy.cs
- RowBinding.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- DrawingDrawingContext.cs
- CodeBlockBuilder.cs
- DataMemberConverter.cs
- WorkflowInstanceUnhandledExceptionRecord.cs
- embossbitmapeffect.cs
- PackWebRequest.cs
- LocationSectionRecord.cs
- MappingItemCollection.cs
- WebPartTransformerAttribute.cs
- TreeViewCancelEvent.cs
- XmlByteStreamWriter.cs
- InputLanguageCollection.cs
- Transform3DGroup.cs
- DeferredSelectedIndexReference.cs
- SqlConnection.cs
- FilterQuery.cs
- processwaithandle.cs
- ImageDrawing.cs
- ISAPIWorkerRequest.cs