- added info screen when opening an empty LG channel list which is most likely caused by selecting a predefined list

during the TV setup or channel search
- fixed: Sony KDL channel lists were not saved correctly
- upgrade to DevExpres 20.1.3
- Loaders can use Api.View.Default.MessageBox(...) to show a DevExpress themed message box without adding a reference to DX libs
This commit is contained in:
Horst Beham
2020-05-06 22:07:48 +02:00
parent 9e9028a99c
commit 728e36ef39
32 changed files with 472 additions and 421 deletions

View File

@@ -65,7 +65,6 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\DLL\System.Data.SQLite.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />

View File

@@ -7,7 +7,6 @@ using ChanSort.Api;
using System.Data.SQLite;
using System.IO;
using System.Text.RegularExpressions;
using System.Windows.Forms;
namespace ChanSort.Loader.Hisense
{
@@ -168,7 +167,7 @@ namespace ChanSort.Loader.Hisense
foreach (var list in this.channelLists)
totalCount += list.Count;
if (totalCount == 0)
MessageBox.Show(Resources.Load_NoChannelsMsg, Resources.Load_NoChannelsCaption, MessageBoxButtons.OK);
Api.View.Default.MessageBox(Resources.Load_NoChannelsMsg, Resources.Load_NoChannelsCaption);
}
#endregion