久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

        <bdo id='ObmVo'></bdo><ul id='ObmVo'></ul>
    1. <legend id='ObmVo'><style id='ObmVo'><dir id='ObmVo'><q id='ObmVo'></q></dir></style></legend>

        <small id='ObmVo'></small><noframes id='ObmVo'>

      1. <tfoot id='ObmVo'></tfoot>
        <i id='ObmVo'><tr id='ObmVo'><dt id='ObmVo'><q id='ObmVo'><span id='ObmVo'><b id='ObmVo'><form id='ObmVo'><ins id='ObmVo'></ins><ul id='ObmVo'></ul><sub id='ObmVo'></sub></form><legend id='ObmVo'></legend><bdo id='ObmVo'><pre id='ObmVo'><center id='ObmVo'></center></pre></bdo></b><th id='ObmVo'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='ObmVo'><tfoot id='ObmVo'></tfoot><dl id='ObmVo'><fieldset id='ObmVo'></fieldset></dl></div>
      2. 本地化:如何將文化信息映射到腳本名稱或 Unico

        Localization: How to map culture info to a script name or Unicode character range?(本地化:如何將文化信息映射到腳本名稱或 Unicode 字符范圍?)

      3. <small id='Dthkn'></small><noframes id='Dthkn'>

        <i id='Dthkn'><tr id='Dthkn'><dt id='Dthkn'><q id='Dthkn'><span id='Dthkn'><b id='Dthkn'><form id='Dthkn'><ins id='Dthkn'></ins><ul id='Dthkn'></ul><sub id='Dthkn'></sub></form><legend id='Dthkn'></legend><bdo id='Dthkn'><pre id='Dthkn'><center id='Dthkn'></center></pre></bdo></b><th id='Dthkn'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Dthkn'><tfoot id='Dthkn'></tfoot><dl id='Dthkn'><fieldset id='Dthkn'></fieldset></dl></div>
        • <bdo id='Dthkn'></bdo><ul id='Dthkn'></ul>
            <tfoot id='Dthkn'></tfoot>

              <legend id='Dthkn'><style id='Dthkn'><dir id='Dthkn'><q id='Dthkn'></q></dir></style></legend>
                <tbody id='Dthkn'></tbody>

                1. 本文介紹了本地化:如何將文化信息映射到腳本名稱或 Unicode 字符范圍?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我需要一些關于本地化的信息.我正在使用帶有 C# 2.0 的 .net 2.0,它處理了大部分與本地化相關的問題.但是,我需要在一個特定的屏幕上手動繪制與當前文化相對應的字母表.

                  I need some information about localization. I am using .net 2.0 with C# 2.0 which takes care of most of the localization related issues. However, I need to manually draw the alphabets corresponding to the current culture on the screen in one particular screen.

                  這類似于 Microsoft Outlook 中的聯系人屏幕(聯系人下的地址卡視圖或詳細地址卡視圖),因此它需要在右端有一列按鈕,每個字母對應一個.

                  This would be similar to the Contacts screen in Microsoft Outlook (Address Cards view or Detailed Address Cards View under Contacts), and so it needs a the column of buttons at the right end, one for each alphabet.

                  我試圖模仿它,但我不想讓用戶選擇腳本.如果說現在的文化是中文,我想畫中文字母.當用戶將文化信息更改為英語時(以及當他重新啟動應用程序時),我想改為繪制英文字母.希望您了解我將使用此查詢的去向.

                  I am trying to emulate that, but I don't want to ask the user to choose the script. If the current culture is say, Chinese, I want to draw Chinese alphabets. When the user changes the culture info to English (and when he restarts the application) I want to draw English alphabets instead. Hope you understand where I am going with this query.

                  我可以確定當前用戶的文化(Application.CurrentCulture 或 System.Globalization.CultureInfo.CurrentCulture 會給出文化相關的信息).我也有所有的腳本來呈現字母.但是,問題是我不知道如何將文化信息映射到腳本的名稱.

                  I can determine the culture of the current user (Application.CurrentCulture or System.Globalization.CultureInfo.CurrentCulture will give the culture related information). I also have all the scripts to render the alphabets. However, the problem is that I don't know how to map the culture info to the name of a script.

                  換句話說,有沒有辦法確定與文化對應的腳本名稱?或者是否可以確定與文化對應的 Unicode 字符值的范圍?它們中的任何一個都可以讓我正確呈現按鈕上的字母.

                  In other words, is there a way to determine the script name corresponding to a culture? Or is it possible to determine the range of Unicode character values corresponding to a culture? Either of them would allow me to render the alphabets on the button properly.

                  非常感謝您對此提出任何建議或指導.如果我的方法(或我試圖實現的目標)存在根本性錯誤,請同時指出.謝謝你的時間.

                  Any suggestions or guidance regarding this is truly appreciated. If there is something fundamentally wrong with my approach (or with what I am trying to achieve), please point out that as well. Thanks for your time.

                  PS:我知道最簡單的解決方案是將腳本名稱配置為用戶首選項的一部分,或者顯示一個語言列表供用戶選擇(如 Outlook 2007 中的聯系人).但我只是想看看我是否可以在用戶不必做任何事情的情況下呈現與文化相對應的字母表.

                  PS: I know the easiest solution is to either configure the script name as part of user preferences or display a list of languages for the user to choose from (a la Contact in Outlook 2007). But I am just trying to see whether I can render the alphabets corresponding to the culture without the user having to do anything.

                  推薦答案

                  在本機代碼中,GetLocaleInfoEx()(Vista 及以上)的 LOCALE_SSCRIPTS 向您顯示語言環境需要哪些腳本..Net 目前還沒有類似的概念.

                  In native code there's LOCALE_SSCRIPTS for GetLocaleInfoEx() (Vista & above) that shows you what scripts are expected for a locale. There isn't a similar concept for .Net at this time.

                  這篇關于本地化:如何將文化信息映射到腳本名稱或 Unicode 字符范圍?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Ignore whitespace while reading XML(讀取 XML 時忽略空格)
                  XML to LINQ with Checking Null Elements(帶有檢查空元素的 XML 到 LINQ)
                  Reading XML with unclosed tags in C#(在 C# 中讀取帶有未閉合標簽的 XML)
                  Parsing tables, cells with Html agility in C#(在 C# 中使用 Html 敏捷性解析表格、單元格)
                  delete element from xml using LINQ(使用 LINQ 從 xml 中刪除元素)
                  Parse malformed XML(解析格式錯誤的 XML)

                  1. <small id='dnA7u'></small><noframes id='dnA7u'>

                      <tbody id='dnA7u'></tbody>
                      <bdo id='dnA7u'></bdo><ul id='dnA7u'></ul>
                      • <legend id='dnA7u'><style id='dnA7u'><dir id='dnA7u'><q id='dnA7u'></q></dir></style></legend>
                      • <tfoot id='dnA7u'></tfoot>
                        1. <i id='dnA7u'><tr id='dnA7u'><dt id='dnA7u'><q id='dnA7u'><span id='dnA7u'><b id='dnA7u'><form id='dnA7u'><ins id='dnA7u'></ins><ul id='dnA7u'></ul><sub id='dnA7u'></sub></form><legend id='dnA7u'></legend><bdo id='dnA7u'><pre id='dnA7u'><center id='dnA7u'></center></pre></bdo></b><th id='dnA7u'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='dnA7u'><tfoot id='dnA7u'></tfoot><dl id='dnA7u'><fieldset id='dnA7u'></fieldset></dl></div>

                            主站蜘蛛池模板: 久久精品久久久久久 | 黄色一级大片视频 | 欧美日韩中文国产一区发布 | 欧美一区二区三区 | 日本中文字幕一区 | 国产日韩欧美在线 | 在线激情视频 | 日韩国产精品一区二区三区 | 欧美精品一区二区三区在线播放 | 中文视频在线 | 欧美日韩在线视频一区二区 | 中文字幕第三页 | 久久一区二区三区电影 | 午夜视频在线免费观看 | 国产不卡视频 | 欧美日韩国产精品激情在线播放 | 香蕉视频一区二区 | 久久久久久久一区二区三区 | 免费成人高清在线视频 | 成人av鲁丝片一区二区小说 | 色综合久久久久 | 国产一区二区三区高清 | 99一级毛片 | 亚洲国产精品一区二区三区 | 91就要激情 | 亚洲黄色一级 | 夜夜骚视频 | 天天拍天天射 | 日本一区二区三区四区 | 毛片国产| 91精品久久久久久久久久入口 | 2018天天干天天操 | 久久精品国产久精国产 | 国产精品久久久久久久一区二区 | 欧美黄色片 | 欧美一区 | 亚洲视频www | 中文字字幕一区二区三区四区五区 | 欧美日韩在线视频一区二区 | 国产99视频精品免费视频7 | 九九成人 |