Ejemplo n.º 1
0
        internal void EndIMEComposition()
        {
            CachedTextInfo cachedTextInfo = m_imePreCompositionCachedTextInfo.Clone() as CachedTextInfo;

            m_imePreCompositionCachedTextInfo = null;

            this.OnIMECompositionEnded(cachedTextInfo);
        }
Ejemplo n.º 2
0
 internal virtual void OnIMECompositionEnded(CachedTextInfo cachedTextInfo)
 {
 }
Ejemplo n.º 3
0
        internal void StartIMEComposition()
        {
            Debug.Assert(m_imePreCompositionCachedTextInfo == null, "EndIMEComposition should have been called before another IME Composition starts.");

            m_imePreCompositionCachedTextInfo = new CachedTextInfo(this);
        }