コード例 #1
0
        private void ShowList()
        {
            if (_ListShow == null)
            {
                _ListShow = new ContentItemInfo(_ContentFile);
            }
            if (_ListShow == null)
                return;

            contentFrame.ChangeContent(_ListShow, PathContentTranstitionType.RIGHT_IN);
        }
コード例 #2
0
        private void ShowList()
        {
            if (_ListShow == null)
            {
                _ListShow = new ContentItemInfo(_ContentFile);
            }
            if (_ListShow == null)
            {
                return;
            }

            contentFrame.ChangeContent(_ListShow, PathContentTranstitionType.RIGHT_IN);
        }
コード例 #3
0
        private void ButtonRefresh(object sender, RoutedEventArgs e)
        {
            if (_GridShow != null)
            {
                contentFrame.ChangeContent(_GridShow, PathContentTranstitionType.RIGHT_OUT);
                _GridShow = null;
            }
            if (_ListShow != null)
            {
                contentFrame.ChangeContent(_ListShow, PathContentTranstitionType.RIGHT_OUT);
                _ListShow = null;
            }

            ReadContent.ReadContentFile(_ContentFile.ConstructFile, ref _ContentFile);
        }
コード例 #4
0
        private void ButtonRefresh(object sender, RoutedEventArgs e)
        {
            if (_GridShow != null)
            {
                contentFrame.ChangeContent(_GridShow, PathContentTranstitionType.RIGHT_OUT);
                _GridShow = null;
            }
            if (_ListShow != null)
            {
                contentFrame.ChangeContent(_ListShow, PathContentTranstitionType.RIGHT_OUT);
                _ListShow = null;
            }

            ReadContent.ReadContentFile(_ContentFile.ConstructFile, ref _ContentFile);
        }