2013年8月27日

on
VS2010 在新增Word 2010 增益集專案後,專案->右鍵[快速選單]->加入->
新增項目[功能區(視覺化設計工具)]->檔名為RibbonCustom.cs

注意:
我的按鈕 OfficeImageId屬性為HappyFace
設定按鈕預設圖示。 
a1 
部分程式碼:
private void button1_Click(object sender, RibbonControlEventArgs e)
{   
    Word.Range range = MyClass.WrdApp.Selection.Range;
    Word.Table newtable = MyClass.WrdDoc.Tables.Add(range,9,9);
    newtable.Range.Font.Size = 10; 
    newtable.set_Style("淺色網底 - 輔色 1"); 
     
    for (int i = 1; i < 10; i++)
    {
        for (int j = 1; j < 10; j++)
        {
            int s = i * j;
            newtable.Cell(i, j).Range.Text = j.ToString() + "*" + i.ToString() + "=" + s.ToString();
        }
    }
}
private void button2_Click(object sender, RibbonControlEventArgs e)
{
    Word.Range range2 = MyClass.WrdApp.Selection.Range;
    Word.Table newtable2 = MyClass.WrdDoc.Tables.Add(range2, 9, 9);
    newtable2.Range.Font.Size = 10;
    newtable2.set_Style("暗色網底 2 - 輔色 5");     for (int i = 1; i < 10; i++)
    {
        for (int j = 1; j < 10; j++)
        {   
            int temp= i*j;                
            newtable2.Cell(i, j).Range.Text = temp.ToString();
        }
    }
}

執行結果: 
a2  --> 2011-02-17_235205


操作結果:

2011-02-17_235933

0 意見:

張貼留言

注意:只有此網誌的成員可以留言。