示例#1
0
        private void TestDefaultTransitionB()
        {
            int    hr;
            string g = "{" + typeof(DxtCompositor).GUID + "}";
            string g2;

            g = g.ToLower();

            hr = m_pTimeline.SetDefaultTransitionB(g);
            DsError.ThrowExceptionForHR(hr);

            hr = m_pTimeline.GetDefaultTransitionB(out g2);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert(g == g2.ToLower(), "GetDefaultTransitionB");
        }