Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / StringSource.cs / 1 / 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
- BinaryEditor.cs
- PeerInputChannel.cs
- InputScopeAttribute.cs
- TreePrinter.cs
- DefaultValueConverter.cs
- DataColumnMapping.cs
- XpsResource.cs
- BinaryNode.cs
- ToolStripItemEventArgs.cs
- ExeConfigurationFileMap.cs
- ViewStateException.cs
- Evidence.cs
- GroupBoxAutomationPeer.cs
- VirtualPathUtility.cs
- LogReservationCollection.cs
- ClickablePoint.cs
- CalendarTable.cs
- LexicalChunk.cs
- Ops.cs
- unitconverter.cs
- OSFeature.cs
- KeyInterop.cs
- FormsAuthentication.cs
- SurrogateChar.cs
- SendKeys.cs
- NullableDecimalMinMaxAggregationOperator.cs
- GetWinFXPath.cs
- EntityViewContainer.cs
- WarningException.cs
- MatrixTransform3D.cs
- UnsafeNativeMethodsMilCoreApi.cs
- PropertyMapper.cs
- XamlPoint3DCollectionSerializer.cs
- PathSegmentCollection.cs
- Misc.cs
- Reference.cs
- TcpProcessProtocolHandler.cs
- CountAggregationOperator.cs
- VectorConverter.cs
- SatelliteContractVersionAttribute.cs
- VariableDesigner.xaml.cs
- GlyphingCache.cs
- MemberMaps.cs
- TreeIterator.cs
- DisableDpiAwarenessAttribute.cs
- LiteralText.cs
- BinaryWriter.cs
- StrongNameMembershipCondition.cs
- EntityCommandCompilationException.cs
- EntityWrapperFactory.cs
- ValidationHelper.cs
- XAMLParseException.cs
- SqlCharStream.cs
- ContextBase.cs
- SamlConstants.cs
- _LocalDataStore.cs
- SurrogateSelector.cs
- Font.cs
- ResetableIterator.cs
- MruCache.cs
- Propagator.Evaluator.cs
- ModulesEntry.cs
- MappingItemCollection.cs
- WebPartConnectionsDisconnectVerb.cs
- EventHandlersStore.cs
- UnsafeNativeMethodsPenimc.cs
- _NegoStream.cs
- ExtenderProvidedPropertyAttribute.cs
- AccessDataSourceView.cs
- SuppressIldasmAttribute.cs
- WebPartUserCapability.cs
- TextDecorationCollectionConverter.cs
- TabItem.cs
- Asn1IntegerConverter.cs
- PeerToPeerException.cs
- StringValidatorAttribute.cs
- CodeChecksumPragma.cs
- PointHitTestParameters.cs
- PrivilegeNotHeldException.cs
- CompilerTypeWithParams.cs
- WebPartExportVerb.cs
- DataSourceCacheDurationConverter.cs
- DictionaryManager.cs
- SoapHeaderException.cs
- DataGridViewColumnEventArgs.cs
- SimpleRecyclingCache.cs
- GlyphsSerializer.cs
- OutOfProcStateClientManager.cs
- DetailsViewModeEventArgs.cs
- StorageComplexPropertyMapping.cs
- WeakReferenceList.cs
- StylusPointProperty.cs
- DataService.cs
- TypeUnloadedException.cs
- StylusCaptureWithinProperty.cs
- RuleConditionDialog.Designer.cs
- XMLSchema.cs
- CommandDevice.cs
- DataServiceProviderMethods.cs
- Timer.cs