博客園網站地址

http://www.dxper.net/documents/html

 

 

000208D5-0000-0000-C000-000000000046express

 

Excel -> CSVide

http://dl.vmall.com/c0z3pqoxo3this

 

EXcel -> CSVspa

http://www.c-sharpcorner.com/uploadfile/yuanwang200409/how-to-convert-xls-file-into-csv-file-in-C-Sharp/.net

 

 

GemBoxcode

http://social.msdn.microsoft.com/Forums/en-US/b2867f69-e98d-479d-9f8d-865348c589c5/convert-xls-to-csv-programmatically-and-back-again?forum=adodotnetdataprovidersorm

http://download.csdn.net/detail/zhengshengpeng1125/5658835xml

 

 

 

<Windowhtm

         xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:dxg = "http://schemas.devexpress.com/winfx/2008/xaml/grid" 
         xmlns:dxe = "http://schemas.devexpress.com/winfx/2008/xaml/editors" 
         x:Class = "WpfApplication18.MainWindow"
         Title = "MainWindow"  Height = "350"  Width = "525" >
     < Window.Resources >
         < Style  TargetType = "{x:Type dxg:GridColumn}" >
             <!--列頭居中-->
             < Setter  Property = "HorizontalHeaderContentAlignment"  Value = "Center"  />
             <!--列值居中-->
             < Setter  Property = "EditSettings" >
                 < Setter.Value >
                     < dxe:TextEditSettings  HorizontalContentAlignment = "Center"  />
                 </ Setter.Value >
             </ Setter >
         </ Style >
     </ Window.Resources >
     < Grid >
         < dxg:GridControl  ItemsSource = "{Binding students}" >
             < dxg:GridControl.Columns >
                 < dxg:GridColumn  FieldName = "id"  />
                 < dxg:GridColumn  FieldName = "name"  />
             </ dxg:GridControl.Columns >
             < dxg:GridControl.View >
                 < dxg:TableView />
             </ dxg:GridControl.View >
         </ dxg:GridControl >
     </ Grid >
</ Window >
 
http://www.cnblogs.com/-ShiL/p/Star201310290255.html
 
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DevExpress.XtraEditors.DXErrorProvider;

namespace MyDXGridSample
{
    public class Person : object, IDXDataErrorInfo
    {   
        public Person(string firstName, string lastName, string address, string phoneNumber, string email)
        {
            this.FirstName = firstName;
            this.LastName = lastName;
            this.Address = address;
            this.PhoneNumber = phoneNumber;
            this.Email = email;
        }
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public string Address { get; set; }
        public string PhoneNumber { get; set; }
        public string Email { get; set; }
        public bool Gender { get; set; }
        #region IDXDataErrorInfo Members
        void IDXDataErrorInfo.GetPropertyError(string propertyName, ErrorInfo info)
        {
            switch (propertyName)
            {
                case "FirstName":
                case "LastName":
                    if (IsStringEmpty(propertyName == "FirstName" ? FirstName : LastName))
                    {
                        SetErrorInfo(info, propertyName + " field can't be empty", ErrorType.Critical);
                    }
                    break;
                case "Address":
                    if (IsStringEmpty(Address))
                    {
                        SetErrorInfo(info, "Address hasn't been entered", ErrorType.Information);
                    }
                    break;
                case "Email":
                    if (IsStringEmpty(Email))
                    {
                        SetErrorInfo(info, "Email hasn't been entered", ErrorType.Information);
                    }
                    else if (Email != "none" && !IsEmailCorrect(Email))
                    {
                        SetErrorInfo(info, "Wrong email address", ErrorType.Warning);
                    }
                    break;
            }
        }
        void IDXDataErrorInfo.GetError(ErrorInfo info)
        {
            if (IsStringEmpty(PhoneNumber) && (Email == "none" || !IsEmailCorrect(Email)))
               SetErrorInfo(info, "Either Phone Number or Email should be specified", ErrorType.Information);
        }
        #endregion
        bool IsStringEmpty(string str)
        {
            return str == null || str.Trim().Length == 0;
        }
        bool IsEmailCorrect(string email)
        {
            return email == null || (email.IndexOf("@") >= 1 && email.Length > email.IndexOf("@") + 1);
        }
        void SetErrorInfo(ErrorInfo info, string errorText, ErrorType errorType)
        {
            info.ErrorText = errorText;
            info.ErrorType = errorType;
            //DXErrorProvider.GetErrorIcon += new GetErrorIconEventHandler(DXErrorProvider_GetErrorIcon);
        }

        void DXErrorProvider_GetErrorIcon(GetErrorIconEventArgs e)
        {
            throw new NotImplementedException();
        }
        
    }
}
相關文章
相關標籤/搜索