示例#1
0
    /// <summary>
    /// Binds the data.
    /// </summary>
    private void BindData()
    {
        var baseSize = this.PageSize.SelectedValue.ToType <int>();

        this.PagerTop.PageSize = baseSize;

        var cultures = StaticDataHelper.LanguageFiles().ToList().GetPaged(this.PagerTop);

        this.List.DataSource = cultures;

        this.DataBind();
    }