Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / StringSource.cs / 1305376 / StringSource.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Runtime.InteropServices.ComTypes; using System.Runtime.InteropServices; using System.Collections; using System.Diagnostics.CodeAnalysis; ////// /// internal class StringSource : IEnumString { private string[] strings; private int current; private int size; private UnsafeNativeMethods.IAutoComplete2 autoCompleteObject2; ////// Represents an internal class that is used bu ComboBox and TextBox AutoCompleteCustomSoucr property. /// This class is reponsible for initializing the SHAutoComplete COM object and setting options in it. /// The StringSource contains an array of Strings which is passed to the COM object as the custom source. /// ////// /// private static Guid autoCompleteClsid = new Guid("{00BB2763-6A77-11D0-A535-00C04FD7D062}"); ////// SHAutoComplete COM object CLSID. /// ////// /// public StringSource(string[] strings) { Array.Clear(strings,0, size); if (strings != null) { this.strings = strings; } current = 0; size = (strings == null ) ? 0 : strings.Length; Guid iid_iunknown = typeof(UnsafeNativeMethods.IAutoComplete2).GUID; object obj = UnsafeNativeMethods.CoCreateInstance(ref autoCompleteClsid, null, NativeMethods.CLSCTX_INPROC_SERVER, ref iid_iunknown); autoCompleteObject2 = (UnsafeNativeMethods.IAutoComplete2)obj; } ////// Constructor. /// ////// /// public bool Bind(HandleRef edit, int options) { bool retVal = false; if (autoCompleteObject2 != null) { try { autoCompleteObject2.SetOptions(options); autoCompleteObject2.Init(edit, (IEnumString)this, null, null); retVal = true; } catch { retVal = false; } } return retVal; } [SuppressMessage("Microsoft.Security", "CA2122:DoNotIndirectlyExposeMethodsWithLinkDemands")] public void ReleaseAutoComplete() { if (autoCompleteObject2 != null) { Marshal.ReleaseComObject(autoCompleteObject2); autoCompleteObject2 = null; } } public void RefreshList(string[] newSource) { Array.Clear(strings,0, size); if (strings != null) { this.strings = newSource; } current = 0; size = (strings == null ) ? 0 : strings.Length; } #region IEnumString Members void IEnumString.Clone(out IEnumString ppenum) { ppenum = new StringSource(strings); } int IEnumString.Next(int celt, string[] rgelt, IntPtr pceltFetched) { if (celt < 0) { return NativeMethods.E_INVALIDARG; } int fetched = 0; while (current < size && celt > 0) { rgelt[fetched] = strings[current]; current++; fetched++; celt--; } if (pceltFetched != IntPtr.Zero) { Marshal.WriteInt32(pceltFetched, fetched); } return celt == 0 ? NativeMethods.S_OK : NativeMethods.S_FALSE; } void IEnumString.Reset() { current = 0; } int IEnumString.Skip(int celt) { current += celt; if (current >= size) { return (NativeMethods.S_FALSE); } return NativeMethods.S_OK; } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// This is the method that binds the custom source with the IAutoComplete interface.The "hWndEdit" is the handle /// to the edit Control and the "options' are the options that need to be set in the AUTOCOMPLETE mode. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Runtime.InteropServices.ComTypes; using System.Runtime.InteropServices; using System.Collections; using System.Diagnostics.CodeAnalysis; ////// /// internal class StringSource : IEnumString { private string[] strings; private int current; private int size; private UnsafeNativeMethods.IAutoComplete2 autoCompleteObject2; ////// Represents an internal class that is used bu ComboBox and TextBox AutoCompleteCustomSoucr property. /// This class is reponsible for initializing the SHAutoComplete COM object and setting options in it. /// The StringSource contains an array of Strings which is passed to the COM object as the custom source. /// ////// /// private static Guid autoCompleteClsid = new Guid("{00BB2763-6A77-11D0-A535-00C04FD7D062}"); ////// SHAutoComplete COM object CLSID. /// ////// /// public StringSource(string[] strings) { Array.Clear(strings,0, size); if (strings != null) { this.strings = strings; } current = 0; size = (strings == null ) ? 0 : strings.Length; Guid iid_iunknown = typeof(UnsafeNativeMethods.IAutoComplete2).GUID; object obj = UnsafeNativeMethods.CoCreateInstance(ref autoCompleteClsid, null, NativeMethods.CLSCTX_INPROC_SERVER, ref iid_iunknown); autoCompleteObject2 = (UnsafeNativeMethods.IAutoComplete2)obj; } ////// Constructor. /// ////// /// public bool Bind(HandleRef edit, int options) { bool retVal = false; if (autoCompleteObject2 != null) { try { autoCompleteObject2.SetOptions(options); autoCompleteObject2.Init(edit, (IEnumString)this, null, null); retVal = true; } catch { retVal = false; } } return retVal; } [SuppressMessage("Microsoft.Security", "CA2122:DoNotIndirectlyExposeMethodsWithLinkDemands")] public void ReleaseAutoComplete() { if (autoCompleteObject2 != null) { Marshal.ReleaseComObject(autoCompleteObject2); autoCompleteObject2 = null; } } public void RefreshList(string[] newSource) { Array.Clear(strings,0, size); if (strings != null) { this.strings = newSource; } current = 0; size = (strings == null ) ? 0 : strings.Length; } #region IEnumString Members void IEnumString.Clone(out IEnumString ppenum) { ppenum = new StringSource(strings); } int IEnumString.Next(int celt, string[] rgelt, IntPtr pceltFetched) { if (celt < 0) { return NativeMethods.E_INVALIDARG; } int fetched = 0; while (current < size && celt > 0) { rgelt[fetched] = strings[current]; current++; fetched++; celt--; } if (pceltFetched != IntPtr.Zero) { Marshal.WriteInt32(pceltFetched, fetched); } return celt == 0 ? NativeMethods.S_OK : NativeMethods.S_FALSE; } void IEnumString.Reset() { current = 0; } int IEnumString.Skip(int celt) { current += celt; if (current >= size) { return (NativeMethods.S_FALSE); } return NativeMethods.S_OK; } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// This is the method that binds the custom source with the IAutoComplete interface.The "hWndEdit" is the handle /// to the edit Control and the "options' are the options that need to be set in the AUTOCOMPLETE mode. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TitleStyle.cs
- ManagementEventArgs.cs
- ParserExtension.cs
- SelectionEditingBehavior.cs
- CodeMemberMethod.cs
- RotateTransform.cs
- BoundPropertyEntry.cs
- InternalControlCollection.cs
- ACL.cs
- Table.cs
- WebPartConnection.cs
- IxmlLineInfo.cs
- PersonalizationStateInfoCollection.cs
- DynamicILGenerator.cs
- OlePropertyStructs.cs
- RIPEMD160Managed.cs
- TypeConverterHelper.cs
- XmlBinaryReaderSession.cs
- OpCodes.cs
- FilterQueryOptionExpression.cs
- MethodBuilderInstantiation.cs
- TriggerCollection.cs
- ColorTranslator.cs
- cookiecollection.cs
- MappingMetadataHelper.cs
- RewritingProcessor.cs
- GeneralTransform3DTo2DTo3D.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- KeyNameIdentifierClause.cs
- Row.cs
- DockPatternIdentifiers.cs
- DoubleLink.cs
- ProfileParameter.cs
- ReferentialConstraint.cs
- PackageRelationshipCollection.cs
- ToolStripSystemRenderer.cs
- DefaultTypeArgumentAttribute.cs
- FlowDocumentPage.cs
- ClientUtils.cs
- DataTablePropertyDescriptor.cs
- DispatcherEventArgs.cs
- FrameworkRichTextComposition.cs
- SingleTagSectionHandler.cs
- TreeViewEvent.cs
- ConfigXmlComment.cs
- ListMarkerLine.cs
- WSDualHttpSecurityMode.cs
- DataBoundControlHelper.cs
- XPathMessageContext.cs
- UnmanagedMarshal.cs
- OutputScopeManager.cs
- wgx_exports.cs
- SynchronizationContext.cs
- WebPartConnectionCollection.cs
- HashMembershipCondition.cs
- LocationUpdates.cs
- UrlMappingsSection.cs
- DaylightTime.cs
- RectangleGeometry.cs
- EntryIndex.cs
- ToolTipService.cs
- RemotingConfiguration.cs
- _ChunkParse.cs
- keycontainerpermission.cs
- QilPatternVisitor.cs
- PerspectiveCamera.cs
- PropertyValueUIItem.cs
- XmlBindingWorker.cs
- DataSourceProvider.cs
- TargetException.cs
- UnmanagedBitmapWrapper.cs
- OdbcConnection.cs
- DependencyProperty.cs
- figurelengthconverter.cs
- HelpFileFileNameEditor.cs
- HttpRequestWrapper.cs
- WorkingDirectoryEditor.cs
- Buffer.cs
- CroppedBitmap.cs
- GeneralTransform2DTo3D.cs
- ActivationServices.cs
- MimeAnyImporter.cs
- Signature.cs
- Transform3D.cs
- HtmlLiteralTextAdapter.cs
- Point3DAnimationUsingKeyFrames.cs
- EnumMember.cs
- SplineQuaternionKeyFrame.cs
- CookieProtection.cs
- HtmlInputText.cs
- SqlServer2KCompatibilityCheck.cs
- ProjectionPlanCompiler.cs
- TypeElementCollection.cs
- XmlProcessingInstruction.cs
- ConfigurationSection.cs
- WindowsAuthenticationEventArgs.cs
- TemplateDefinition.cs
- SharedUtils.cs
- DesignerTransaction.cs
- Semaphore.cs