Click here to Skip to main content
15,885,365 members
Articles / Desktop Programming / Windows Forms

DataView Paging in WPF

Rate me:
Please Sign up or sign in to vote.
4.00/5 (10 votes)
23 Sep 2007CPOL2 min read 161.8K   4K   62  
Custom paging for Dataview in WPF
using System;
using System.Collections.Generic;
using System.Text;

namespace CustomWindow
{
    class Common
    {
        private static string m_ConnectionString = "Data Source=SERVER;Initial Catalog=Northwind;Persist Security Info=True;User ID=sa";

        public static string GetConnectionString()
        {
            return m_ConnectionString;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions