Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
dialog box in french
posted

when i delete a raw in grid i have a messagebox in english to confirm. How  can i have this messagebox in french? does infragistics have french resources ?

Thanks

  • 1158
    Verified Answer
    Offline posted

    lem38,

    I use Infragistics.Win.UltraWinGrid.Resources.Customizer.SetCustomizedString(string, string) to changing the resources for Infragistics classes.

    And I use this code for all of my french applications:

    object[ customMsgs = new object[{
    new string[{"RowFilterDialogTitlePrefix","Insere le critère du filtre"}
    ,
    new string[{"RowFilterDropDownLike","Contien"}
    ,
    new string[{"DeleteRowsMessageTitle","Supprimer"}
    ,
    new string[{"DeleteMultipleRowsPrompt","Etes-vous sur de vouloir supprimer les lignes selectionnées?"}
    ,
    new string[{"DeleteSingleRowPrompt","Etes-vous sur de vouloir supprimer les lignes selectionnées?"}
    ,
    new string[{"GroupByBoxDefaultPrompt","Trascina quì una o più intestazioni di colonna per raggruppare i dati."}
    ,
    new string[{"","."}
    };

    foreach (object[ o in customMsgs)
            Infragistics.Win.UltraWinGrid.
    Resources.Customizer.SetCustomizedString(o[0].ToString(), o[1].ToString());

    In this code you will see some examples, and language mistakes Embarrassed , if you search in the documentations you can find more info about this matter.

    I hope this may be an answer to your question? Wink.

    Davide Dolla